Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单的问题,但在线搜索没有结果。在 Microsoft SQL Server Management Studio 中,添加新行的查询是什么?我想知道实际的脚本是什么。如果其中一个字段是自动递增的,那么在 sql 命令中是如何管理的?
假设您在名为 tablename 的表中有两列 autoNum 和 MyColumNName ...
Insert into tableName (MyColumnName) Values ('Test');
您不需要包含自动编号字段,因为系统会自动处理它。
示例: http ://sqlfiddle.com/#!6/8e083/2/2