>데이터 베이스 >MySQL 튜토리얼 >Oracle 与 SQL Server的简单常用的插入语句的区别

Oracle 与 SQL Server的简单常用的插入语句的区别

WBOY
WBOY원래의
2016-06-07 17:02:041488검색

--Oracle的方式判断记录是否存在不存在则插入---insert into a(a.user_id,a.user_name) select

Oracle 与 SQL Server的简单常用的插入语句的区别

[日期:2011-06-29] 来源:Linux社区  作者:w5q7c3 [字体:]

--Oracle的方式判断记录是否存在不存在则插入---
insert into a(a.user_id,a.user_name) select '2','李四' from dual where not exists
(select 1 from a where a.user_id='2')


--sql server的方式--
if not exists(select Test_TB.ID from Test_TB where)
  insert into Test_TB values('2','李四',GETDATE())

linux

  • 0
  • 解决在Oracle数据库中使用hibernate生成表不能正确创建表的问题

    Oracle EBS APP-MRP-22064: 出现内部错误 (mrlups_update_supply,,5)

    성명:
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.