Inserting Multiple Rows in Sybase ASE

后端 未结 4 1474
不知归路
不知归路 2021-01-18 12:11

(Similar question related to SQL Server : SO Link)

I know in Sql Server 2008 or above, you can insert multiple rows doing the following:

INSERT INTO          


        
相关标签:
4条回答
  • 2021-01-18 12:32

    Looks like that syntax is not valid in Sybase ASE but as suggested in the linked SO post you can get the same using UNION ALL like

    INSERT INTO MyTable (Name, ID)
    SELECT 'First',1
    UNION ALL
    SELECT 'Second',2
    UNION ALL
    SELECT 'Third',3
    
    0 讨论(0)
  • 2021-01-18 12:38

    try this:

    INSERT INTO MyTable (Name, ID)
    Select 'First',1
    Union All 
    Select 'Second',2
    Union All
    Select 'Third',3
    

    I know this works on older versions of SQL server, and suspect that it will work with sybase.

    0 讨论(0)
  • 2021-01-18 12:39

    Sybase doen't have insert syntax as SQL Server. What's wrong with showed below classic method?

    INSERT INTO MyTable (Name, ID) VALUES ('First',1)
    INSERT INTO MyTable (Name, ID) VALUES ('Second',2)
    INSERT INTO MyTable (Name, ID) VALUES ('Third',3)
    go
    
    0 讨论(0)
  • 2021-01-18 12:42

    The syntax in SQL Server for this example will not work in Sybase. Either go with individual statements, or UNION ALL clause

    0 讨论(0)
提交回复
热议问题