为什么我在以下查询中收到错误incorrect syntax near the keyword IN
?
select * into persons_backup IN 'HRMS.mdb' from persons
谢谢
答案 0 :(得分:2)
假设SQL Server(基于您之前的问题),您需要
select *
into persons_backup
from HRMS.mdb.persons
或
select *
into HRMS.mdb.persons_backup
from persons
取决于你要做的事情。 See SELECT ... INTO
syntax here
答案 1 :(得分:1)
假设您要将人员中的所有行添加到另一个表persons_backup:
Insert into persons_backup select * from persons;
根据您使用的RDBMS,您可能必须在select周围放置(。