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

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

minify - Minimizing css files -

php - How to remove letter in front of the word laravel -