sqlserver 常用语法
1.事务嵌套
-- commit 对事务数的影响 (使用了嵌套事务) print @@trancount --在没有事务的时候查看一下事务数 begin tran -- 开始事务 print @@trancount --开始事务,@@trancount将被设置为1 begin tran print @@trancount -- 事务数+1 commit tran -- 提交第二个事务 print @@trancount -- 事物务-1 commit tran -- 提交第一个事务,事务数+1 print @@trancount
2、查询数据表字段
SELECT name FROM sys.columns WHERE object_id = OBJECT_ID('表名');
3、
作者:chenze 出处:https://www.cnblogs.com/chenze-Index/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 如果文中有什么错误,欢迎指出。以免更多的人被误导。 |