Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yk committed Dec 7, 2023
1 parent 121bfe2 commit 6c27090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/posts/mysql/mysql_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,4 +388,4 @@ select * from emp, dept where emp.deptno = dept.deptno;
select id, emp.deptno from emp, dept where emp.deptno = dept.deptno;
```

> 过滤笛卡尔集的 where 筛选条件,必须比查询表的数量大
> 过滤笛卡尔集的 where 筛选条件,`不能少于表的数量-1`,否则会出现笛卡尔集

0 comments on commit 6c27090

Please sign in to comment.