Difference between IN and ANY operators in SQL

后端 未结 10 1807
無奈伤痛
無奈伤痛 2020-12-23 11:14

What is the difference between IN and ANY operators in SQL?

10条回答
  •  攒了一身酷
    2020-12-23 12:08

    (in) is a special kind of operator which is use to pick value one by one from list of values which we have specified.while (any) is use with where clause

提交回复
热议问题