mysql - how to create an sql table without using create keyword? -
is there options available create new sql table without using 'create' keyword
for example table named emp
, create table named emp_copy
employeeid employeename age gender 1001 henry 54 male 1002 tina 36 female 1003 john 24 male
for selecting columns
select * emp_copy emp;
for selecting columns
select employeeid, employeename ,age emp_copy emp;
Comments
Post a Comment