创建
欢迎转载 ,转载时请保留作者信息。本文版权归本人所有,如有任何问题,请与我联系wang2650@sohu.com 。 过错
create table tableName (字段名 字段类型 primary key
)
删除
drop table if exists tableName ;
表是否存在
select count(*) from db_class where class_name='tablename'
tableName要小写
重命名表
rename table oldname to newname