创建表:creat table 表名 (id, int, name, char(10))
插入纪录:insert into 表名 (id, name) values(1, '测试')
删除纪录:delete 表名 where name='测试'
修改纪录:update 表名 set name='账号' where id=1
删除表:drop table 表名
津公网安备 12010302001042号