【线上】 select * from xxoo where 1=1应用挂掉
select * from xxoo where 1=1
该语句将数据全部查询出来,当数据量特别大的时候,服务器会挂掉
解决方案:
xxxxooo
例子:
线上改写前SQL语句:
select * from user where id = 1
会被改写成
select * from user where id = 1 limit 600
select * from xxoo where 1=1
该语句将数据全部查询出来,当数据量特别大的时候,服务器会挂掉
解决方案:
xxxxooo
例子:
线上改写前SQL语句:
select * from user where id = 1
会被改写成
select * from user where id = 1 limit 600