【发布时间】:2014-08-29 09:29:36
【问题描述】:
(与 SQL Server 相关的类似问题:SO Link)
我知道在 Sql Server 2008 或更高版本中,您可以执行以下操作插入多行:
INSERT INTO MyTable (Name, ID)
VALUES ('First',1), ('Second',2), ('Third',3)
但是,这种语法似乎在 Sybase Adaptive Server Enterprise 中不起作用,因为这会给我一个错误..
有人知道 Sybase 中实现相同功能的语法吗?
Sybase ASE 基于 Transact SQL..
谢谢
【问题讨论】:
标签: sql sql-server database tsql sybase