您现在的位置: 首页 >> 产品知识
首页 >> 产品知识
常用标准SQL语句.

创建表:creat table 表名 (id, int, admin, char(10))

插入纪录:insert into 表名 (id, admin) values(1, '名称')

删除纪录:delete 表名 where admin='名称'

修改纪录:update 表名 set admin='名称' where id=1

删除表:drop table 表名