(A similar question related to SQL Server: SO Link )
I know in Sql Server 2008 or higher, you can insert multiple rows by doing the following:
INSERT INTO MyTable (Name, ID)
VALUES ('First',1), ('Second',2), ('Third',3)
However, this syntax does NOT seem to work in Sybase Adaptive Server Enterprise, as it gives me an error.
Does anyone know the syntax in Sybase that achieves the same?
Sybase ASE is based on Transact SQL ..
thank
source
share