标签: 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)