不懂就问:SQL 语句中 where 条件后 写上1=1 是什么意思

2023-02-09 00:00:00 代码 条件 这是 拷贝 语法错误

程序员在编程过程中,经常会在代码中使用到“where 1=1”,这是为什么呢?


SQL注入

初次看到这种写法的同学肯定很纳闷,加不加where 1=1,查询不都一样吗?例如:

select * from customers;

select * from customers where 1=1;

相关文章