Home > database >  Since the query with the two conditions listed, such as query cultural degree is junior college and
Since the query with the two conditions listed, such as query cultural degree is junior college and

Time:10-09

Since the query with the two conditions listed, such as cultural degree is junior college and undergraduate course personnel information query

CodePudding user response:

 select * from tableName 
Where [education]=N 'college' or [education]=N 'bachelor'

Is that ok?

CodePudding user response:

Select * from tableName
Where [education] IN (' college ', N 'bachelor')
  • Related