Home > database > Consult the database for the same attribute
Consult the database for the same attribute
Time:10-18
Just said the same when notes properties such as the where dept in (XXX, XXX, XXX) behind said this is what I remember the sentence in a collection didn't see the XXX what is said is the content of the column name
CodePudding user response:
XXX, represents a specific value,
For example: Select * from emp where the name (in 'zhang', 'bill', 'Cathy')
Equivalent to Select * from emp where name='zhang' or name='bill' or name='Cathy'