讨论数量: 0
发起讨论
只看当前版本
SQL 代码规范
/
-- Good
select * from customers where is_cancelled = true
select * from customers where is_cancelled = false
-- Bad
select * from customers where is_cancelled
select * from customers where not is_cancelled
本文章首发在 LearnKu.com 网站上。