使用与现有表相同的字段创建mysql表

时间:2013-08-05 12:24:15

标签: mysql copy field

我想创建一个新的mysql表,其字段与现有表相同。

但是,我不希望它具有相同的键,索引等 - 只是相同的字段(当然还有字段类型)。

有一种简单的方法吗?

2 个答案:

答案 0 :(得分:2)

create table new_table
select * from existing_table 
limit 0

SQLFiddle demo

答案 1 :(得分:1)

create myTable as
select col1, col2 ....from otherTable
where 1=2