数据库基础语句

MySql数据库基础

创建库:createdatabase[if not excists]数据库命[参数[参数][参数]…];

显示库:showdatabases;

修改库:alterdatabases 数据库名[参数[参数][参数]…];

删除库:dropdatabases[if exists];

创建表:creattable 表名(列名 类型[列名 类型]…);

查看所有表:showtables;

查看表的创建语句:showcreate table 表名;

显示表结构:desc 表名:

修改表名:renametable 原表名 to 新表名;

修改字符集:altertable 表名 character set 字符集名;

删除表:droptable 表名;

操作列:

追加列:alter table 表名 add 列名 类型 ;

修改列类型:alter table 表名 modify 列名 类型;

修改列 :alter table 表名 change column 原列名 新列名 类型;

删除列:alter table 表名 drop 列名;

操作数据库:

插入:Insert into 表名[(列名)]values(值[值]…);

修改:update 表名set 列名=值 where 条件语句;

删除:delete from 表名 where 条件语句;

备份数据库:mysqldump – u用户名 – p密码 数据库名 >文件名;

恢复数据库:source 文件名;


你可能感兴趣的:(数据库)