数据库
文章平均质量分 88
天道酬勤_鹿
这个作者很懒,什么都没留下…
展开
-
Union和Union All的区别
假设我们有一个表Student,包括以下字段与数据: [c-sharp] view plain copydrop table student; create table student ( id int primary key, name nvarchar2(50) not null, score number not null ); insert into student ...原创 2018-07-12 16:33:01 · 143 阅读 · 0 评论 -
MySQL执行计划详解(优化sql语句)
执行计划是什么? 执行计划,简单的来说,是SQL在数据库中执行时的表现情况,通常用于SQL性能分析,优化等场景。在MySQL使用 explain 关键字来查看SQL的执行计划。如下所示: 1 2 3 4 5 //1. 查询t_base_user select * from t_base_user where name=...原创 2018-07-20 11:46:22 · 4935 阅读 · 0 评论