如何在一个sql语句中创建一个带索引的表

时间:2015-04-03 09:27:07

标签: sql

我想用Index创建一个表。一般来说,我可以用两句话来做到这一点:

create table if not exists my_table
create index if not exists my_index on my_table (my_column ASC)

我想知道,我能用一句话来做吗?像:

create table if not exists my_table with index if not exists my_index (my_column ASC)

0 个答案:

没有答案