作者:nirmalya mondal
介绍
mysql 是用于 web 应用程序和其他数据驱动应用程序的最流行的关系数据库管理系统 (rdbms) 之一。无论您是初学者还是想要提高 mysql 技能的人,了解基本查询都是至关重要的。本博客将引导您完成一些基本的 mysql 查询,可用于数据库操作、表操作和数据管理。
1. 数据库操作
创建数据库首先,您需要一个数据库来存储表和数据。创建数据库很简单:
1
create database my_database;
创建数据库后,使用以下查询来选择它:
1
use my_database;
如果需要删除数据库,请使用以下命令:
2. 表操作
创建表表是存储数据的地方。您可以创建包含特定列的表,如下所示:
1
2
3
4
5
6
create table users (
id int auto_increment primary key,
name varchar(100),
email varchar(100),
age int
);
要查看所选数据库中的所有表:
1
show tables;
如果你想了解表的结构,可以描述一下:
1
describe users;
如果您需要通过添加或更改列来修改表格:
添加专栏 修改列1
alter table users modify age tinyint;
删除表:
1
drop table users;
3. 数据操作
插入数据将数据添加到表中:
1
insert into users (name, email, age) values (john doe, john@example.com, 25);
从表中检索数据:
1
select name, email from users where age > 20;
要检索表中的所有数据:
更新数据更新表中的数据:
1
update users set age = 26 where name = john doe;
要从表中删除数据:
1
delete from users where name = john doe;
4. 条件查询
where 子句使用where子句根据特定条件过滤记录:
1
select * from users where age > 20;
使用 and 或 or 组合多个条件:
in 子句根据值列表选择数据:
1
select * from users where age in (20, 25, 30);
过滤一定范围内的数据:
1
select * from users where age between 20 and 30;
使用 like 子句搜索模式:
1
select * from users where name like j%;
过滤具有 null 或 not null 值的记录:
5.聚合函数
count计算行数:
1
select count(*) from users;
计算列的总和:
1
select sum(age) from users;
求一列的平均值:
1
select avg(age) from users;
查找一列的最大值或最小值:
1
select max(age) from users;
1
select min(age) from users;
6. 分组和排序
分组依据根据一列或多列对数据进行分组:
拥有过滤分组数据:
1
select age, count(*) from users group by age having count(*) > 1;
按升序或降序对数据进行排序:
1
select * from users order by age desc;
7. 加入操作
内连接从多个表中获取同时满足条件的数据:
1
2
select users.name, orders.order_date from users
inner join orders on users.id = orders.user_id;
从左表中获取数据并从右表中获取搭建源码点我wcqh.cn匹配的行:
1
2
select users.name, orders.order_date from users
left join orders on users.id = orders.user_id;
从右表中获取数据并从左表中获取匹配的行:
1
2
select users.name, orders.order_date from users
right join orders on users.id = orders.user_id;
8. 子查询
where 中的子查询使用子查询来过滤结果:
1
select name from users where id = (select 搭建源码点我wcqh.cnuser_id from orders where order_id = 1);
使用子查询来计算值:
1
2
select name, (select count(*) from orders where users.id = orders.user_id) as order_count
from users;
9. 意见
创建视图根据查询创建虚拟表:
1
2
3
create view user_orders as
select users.name, orders.order_date from users
inner join orders on users.id =搭建源码点我wcqh.cn orders.user_id;
删除视图:
1
drop view user_orders;
10. 索引
创建索引通过创建索引提高查询性能:
1
create index idx_name on users (name);
删除索引:
1
DROP INDEX idx_name ON users;
结论
理解这些基本的 mysql 查询对于任何使用关系数据库的人来说都是至关重要的。无论您是管理数据、优化查询还是确保数据完整性,这些命令都构成了您的 mysql 技能的基础。通过掌握它们,您将能够轻松处理大多数与数据库相关的任务。
以上就是基本 MySQL 查询:搭建源码点我wcqh.cn综合指南的详细内容,更多请关注青狐资源网其它相关文章!
暂无评论内容