如何批量插入数据?

这个问题在这里已经有了答案:

  • 在单个SQL查询中插入多行? [复制] 4个答案

  • 如果你有这个定义:

    CREATE TABLE t (id int IDENTITY(1,1) PRIMARY KEY)
    

    然后你可以这样做:

    INSERT t DEFAULT VALUES
    INSERT t DEFAULT VALUES
    INSERT t DEFAULT VALUES
    INSERT t DEFAULT VALUES
    INSERT t DEFAULT VALUES
    
    链接地址: http://www.djcxy.com/p/94497.html

    上一篇: How to insert data in a batch?

    下一篇: I have an incorrect syntax error