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、