答案:创建表:creat table 表名 (id, int, admin, char(10))
插入纪录:insert into 表名 (id, admin) values(1, '名称')
删除纪录:delete 表名 where admin='名称'
修改纪录:update 表名 set admin='名称' where id=1
删除表:drop table 表名
答案:创建表:creat table 表名 (id, int, admin, char(10))
插入纪录:insert into 表名 (id, admin) values(1, '名称')
删除纪录:delete 表名 where admin='名称'
修改纪录:update 表名 set admin='名称' where id=1
删除表:drop table 表名
本文链接:http://www.365ymw.com/article-151.html 转载请保留出处,谢谢!