sql - problem in select into query -


why m getting error incorrect syntax near keyword in in following query?

select * persons_backup in 'hrms.mdb' persons 

thank you

assuming sql server (based on previous question) need

select *  persons_backup  hrms.mdb.persons 

or

select *  hrms.mdb.persons_backup  persons 

dependant upon trying exactly. see select ... into syntax here


Comments