我知道在 sql server 中
Insert into table ( id, name) values ('1', 'John'), ('2','Peter');
但在firebid 1.5中我不知道如何插入这些值。
我试过了
Insert into table ( id, name)
select '1', 'John' from rdb$database
union all select '2', 'Peter' from rdb$database;
但它不起作用