MySQL常见SQL语句使用方法总结

创建用户

CREATE USER 'root'@'%' IDENTIFIED BY 'password';

创建用户并赋予指定权限

grant create,select,update,insert,delete,alter on bbs.* to lvtao@localhost identified by 'password';

创建用户并赋予全部权限

Grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;

创建备份用户

GRANT SELECT,RELOAD,SHOW DATABASES,LOCK TABLES,EVENT,REPLICATION CLIENT  ON *.* TO 'bak'@'localhost' IDENTIFIED BY 'password';

备份所有数据库

mysqldump -u root -p --all-databases --ignore-database=performance_schema --ignore-database=information_schema --skip-lock-tables > /home/db.sql

导出一个数据库结构

mysqldump -u root -p -d –add-drop-table database >/home/db.sql

恢复数据

A:常用source 命令  进入mysql数据库控制台,  如mysql -u root -p  mysql&gt;use 数据库  然后使用source命令,后面参数为脚本文件(如这里用到的.sql)  mysql&gt;source wcnc_db.sql    B:使用mysqldump命令  mysqldump -u username -p dbname <p>创建数据库</p><pre class="brush:sql;toolbar:false;">create database ;

显示所有的数据库

show databases;

删除数据库

drop database ;

选择数据库

use ;

查看当前使用的数据库

select database();

当前数据库包含的表信息:

show tables;

建表

create table  (   [,.. ]);    mysql&gt; create table MyClass(  &gt; id int(4) not null primary key auto_increment,  &gt; name char(20) not null,  &gt; sex int(4) not null default '0',  &gt; degree double(16,2));

获取表结构

desc 表名,或者show columns from 表名    mysql&gt;DESCRIBE MyClass;  mysql&gt;desc MyClass;   mysql&gt;show columns from MyClass;

删除表

drop table     mysql&gt; drop table MyClass;

插入数据

insert into  [( [,.. ])] values ( 值1 )[, ( 值n )]    mysql&gt; insert into MyClass values(1,'Tom',96.45),(2,'Joan',82.99), (2,'Wang', 96.59);

查询表中的数据

1)、查询所有行  命令: select  from  where   例如:查看表 MyClass 中所有数据  mysql&gt; select * from MyClass;2)、查询前几行数据  例如:查看表 MyClass 中前2行数据  mysql&gt; select * from MyClass order by id limit 0,2;  或者:  mysql&gt; select * from MyClass limit 0,2;

删除表中数据

delete from 表名 where 表达式    mysql&gt; delete from MyClass where id=1;

修改表中数据

update 表名 set 字段=新值,… where 条件    mysql&gt; update MyClass set name='Mary' where id=1;

在表中增加字段:

alter table 表名 add字段 类型 其他;     mysql&gt; alter table MyClass add passtest int(4) default '0'

更改表名:

rename table 原表名 to 新表名;     mysql&gt; rename table MyClass to YouClass;

更新字段内容

update 表名 set 字段名 = 新内容update 表名 set 字段名 = replace(字段名,'旧内容','新内容');  文章前面加入4个空格update article set content=concat('  ',content);

更新字段部分字符串

update contents set `text`=REPLACE(text,'http://www.lvtao.net','https://www.lvtao.net')

字段:数值类型
MySQL常见SQL语句使用方法总结

字段:字符串型

MySQL常见SQL语句使用方法总结
字段:日期型
MySQL常见SQL语句使用方法总结

© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享