数据库标准常用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 表名
最后更新:2017-01-04 22:34:37
创建表:creat table 表名 (id, int, admin, char(10))
插入纪录:insert into 表名 (id, admin) values(1, ‘名称’)
删除纪录:delete 表名 where admin=’名称’
修改纪录:update 表名 set admin=’名称’ where id=1
删除表:drop table 表名
最后更新:2017-01-04 22:34:37