mysql多条件排序查询
概述数据库中的数据直接呈现出来一般不是我们想要的,所以我们上两节演示了如何对数据进行过滤的方法。除了对数据进行过滤,我们可能还需要对数据进行排序,比如想从列表中了解消费最高的项,就可能需要对金额字段做...
2024.11.15在日常的网站维护和MYSQL数据库管理中,我们经常会用到非常多的MYSQL命令,为了方便大家整理,小编列举了18个管理MYSQL数据库时最常使用的命令。在日常的网站维护和管理中,会用到非常多的SQL语句,
熟练使用对网站管理有很多好处,尤其是站群管理的时候。
下面列一些常用的命令做备记。
1、显示数据库
show databases
显示表
show tables;
2、创建用户
创建root用户密码为123
use mysql;
grant all on *.* to root@‘%‘ identified by ‘123‘ with grant option;
commit;
3、修改密码
grant all on *.* to xing@‘localhost‘ identified by ‘123456‘ with grant option;
update user set password = password(‘newpwd‘) where user = ‘xing‘ and host=‘localhost‘;
flush privileges;
4、创建数据库testdb:
create database testdb;
5、预防性创建数据库:
create database if not testdb;
6、创建表:
use testdb;
create table table1(
username varchar(12),
password varchar(20));
7、预防性创建表aaa:
create table if not exists aaa(ss varchar(20));
8、查看表结构:
describe table1;
9、插入数据到表table1:
insert into table1(username,password) values
(‘leizhimin‘,‘lavasoft‘),
(‘hellokitty‘,‘hahhahah‘);
commit;
10、查询表table1:
select * from table1;
11、更改数据:
update table1 set password=‘hehe‘ where username=‘hellokitty‘;
commit;
12、删除数据:
delete from table1 where username=‘hellokitty‘;
commit;
13、给表添加一列:
alter table table1 add column(
sex varchar(2) comment ‘性别‘,
age date not null comment ‘年龄‘
);
commit;
14、修改表结构
从查询创建一个表table1:
create table tmp as
select * from table1;
15、删除表table1:
drop table if exists table1;
drop table if exists tmp;
16、备份数据库testdb
mysqldump -h 192.168.3.143 -u root -p pwd -x --default-character-set=gbk >C:\testdb.sql
17、删除数据库testdb
drop database testdb;
18、恢复testdb数据库
首先先建立testdb数据库,然后用下面命令进行本地恢复
mysql -u root -pleizhimin testdb
概述数据库中的数据直接呈现出来一般不是我们想要的,所以我们上两节演示了如何对数据进行过滤的方法。除了对数据进行过滤,我们可能还需要对数据进行排序,比如想从列表中了解消费最高的项,就可能需要对金额字段做...
2024.11.15福哥答案2020-12-15:[答案来自此链接:](https://www.cnblogs.com/ld-swust/p/5607983.html)在 MySQL 中,恢复机制是通过回滚日志(undo...
2024.11.15mysql分页查询是先查询出来所有数据,然后跳过offset,取limit条记录,造成了越往后的页数,查询时间越长一般优化思路是转换offset,让offset尽可能的小,最好能每次查询都是第一页,也...
2024.11.131.使用unionunion的使用很简单,要做的只是给出每条select语句,在语句之间放上关键字union。(1)我们在products表中查询prod_price
2024.11.061 背景作为在后端圈开车的多年老司机,是不是经常听到过,“mysql 单表最好不要超过2000w”,“单表超过2000w 就要考虑数据迁移了”,“你这个表数据都马上要到2000w 了,难怪查询速度慢”...
2024.11.15