如何在SQL表中插入空行?

2021-09-10 00:00:00 sql tsql sql-server

可能的重复:
将行插入到只有一个 IDENTITY 列的表中

我有一个只有一列的 SQL 表.列是一个自动增量字段,如:

I have a SQL table with just one column. Column is an autoincrement field like:

Id INT IDENTITY

我需要在这个表中插入一行(这是一个临时的大容量/虚拟表):

I need to insert a rows to this table (this is a bulk/dummy table temporarily):

INSERT INTO my_table VALUES ()

但是我遇到了语法错误.

But I'm got a syntax error.

我该怎么做?

推荐答案

INSERT INTO my_table DEFAULT VALUES 

相关文章