(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
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