Let's go

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、

posted @ 2020-11-30 20:50  chenze  阅读(117)  评论(0编辑  收藏  举报
有事您Q我