eClinicalWorks interview question

Interesting question: Take a table backup using a query in MySQL.

Interview Answer

Anonymous

23 May 2013

create table backup_tablename1 like tablename1; insert into backup_tablename1 select * from tablename1;

5