我遇到了以下 T-SQL。有人可以解释它的作用。
INSERT #numbers default VALUES
临时表#numbers 是在几行之前创建的,内容如下:
CREATE TABLE #numbers (num int identity primary key)
“默认值”位有什么作用?
我遇到了以下 T-SQL。有人可以解释它的作用。
INSERT #numbers default VALUES
临时表#numbers 是在几行之前创建的,内容如下:
CREATE TABLE #numbers (num int identity primary key)
“默认值”位有什么作用?