求助关于sql语句中多where条件的写法

2025-03-23 12:40:09
推荐回答(1个)
回答1:

多条件的写法类似下面:

select * from table where col_1=value1 and col_2=value2 and col_3 > 1000;

具体就要靠自己领悟了!