阅读418 返回首页    go 搜狐 go 中电云集


数据库标准常用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

  上一篇:go Linux主机安全配置的几个脚本
  下一篇:go 简单介绍xfs文件系统(转载)