創建
歡迎轉載 ,轉載時請保留作者信息。本文版權歸本人所有,如有任何問題,請與我聯系[email protected] 。 過錯
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