首页 > 开发 > 综合 > 正文

数据库变更

2024-07-21 02:51:53
字体:
来源:转载
供稿:网友

数据库变更:

创建数据库:create database 数据库名

删除数据库:drop database 数据库名

表变更:

新建表:create table 【表名】(field1  type,field2  type )PRimary key( field)

删除表:drop  table 【表名]】

变更表名:alter table 【表名old】rename 【表名new】

添加列:alter table 【表名】 add  fieldname type

删除列:alter table 【表名】 drop column fieldname

记录变更:

添加数据:insert into 【表名】(field1,fields2) values (数据,数据 )

删除数据:delete from 【表名】 (where field =数据 andfield=数据)

修改数据:update 表名 set 列名=数据 (where filed=数据)

查询数据:select field,(*) from 【表名】(where field = 数据)


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表