下面简单介绍了SQL查询某表是否存在以及返回新增数据的ID值。
1.查询表是否存在:
表名:“t_Demo”, type = 'u' 查看是不是用户表
select * from sysobjects where id = object_id('t_Demo') and type = 'u' select * from sys.tables where name='t_Demo' and type = 'u'
2.查询字段是否存在:
表名:“t_Demo”, 字段名“DemoID”
select * from syscolumns where name='DemoID' and objectproperty(id,'IsUserTable')=1 andobject_name(id)='t_Demo'
3.返回某自增字段的最大值,可以用于返回刚添加数据的ID值。
字段名:NdsID 表名:tb_Nds
select max(NdsID) from tb_Nds
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。