Database数据库中,sql语句新增数据时能否实现先查询有无此条记录再添加?请各位大神帮忙 怎么写

2024-11-27 09:45:40
推荐回答(3个)
回答1:

SQL Server可以用if exists来判断
存储过程
if exists(select 1 from sysobjects where name='存储过程名')
drop procedure 存储过程名
go
数据库表
if exists(select 1 from sysobjects where name='表名')
drop table 表名
go
数据库
IF exists(select 1 from sysdatabases where name='数据库名')
drop database 数据库名
go
索引
if exists (select 1 from sysindexes where name = '索引名')
drop index 表名.索引名
go

视图
if exists (select 1 from sysindexes where name = '视图名')
drop view 视图名
go
总结一下:
查 存储过程、数据库表 使用 sysobjects 表,
查 数据库 使用 sysdatabases 表,
查 索引、视图 使用 sysindexes 表
这些是查系统表的,那么查普通表怎么查?嗯
if exists(select 1 from 表名 where 条件)
[begin] --begin和end 相当于“{}”存在,把后面多句整合成一个整体
要做的操作
[end]
go
PS1:if exists这个语法貌似还有其他的用法,建议去查一查,很好用很好用,用会了会上瘾我会说?
PS2:这个go挺好用,像断点,他会把前面一个go和后面一个go之间的代码运行生效后才会继续运行后面的代码,比如:刚进入SQL Server的时候默认是进入master库,先看看下面2段语句的结果
use bbs
create table 1
go

use bbs
go
create table 1
go
第一句 会在master建一个table1,然后进入bbs库;第二句 会进入bbs库 然后在bbs库建table1表
PS2:select 1 from。。。。这里的1主要是加快搜索速度,这种只查询是否存在的情况下,如果查到数据就显示1,这样可以大大地加快搜索速度,查询的结果是有多少条数据就有多少个1

回答2:

在oracle中是有这样的语句的
比如A表中有主键a
merge into 表名A t using(select '主键内容' a from dual) t2 on (t.a=t2.a) when not matched then insert values(表格的各个字段值) when matched then update set 各个字段
这样数据库会自动去判断这个主键是否已经有存在这个数据库中,如果存在那么就更具主键去修改其他字段的数据,如果没有则新增一条数据

回答3:

insert into table(xx,xx,xx)
select xx,xx,xx from dual where not exists(select 1 from table where xxxx)