Hi,
Kindly let me know how to copy a table(both structure and data) during runtime using java programming.
Looking for equivalent access commands for the following sql commands.
1. create table newemp select * from emp;
2. alter table newemp add userAns int;
3. update newemp set userAns=0;
4. drop table newemp;
Regards,
Venkatesh G