Trying to perform MINUS operation in MySQL

前端 未结 6 422
野性不改
野性不改 2020-11-29 10:21

I am trying to perform a MINUS operation in MySql.I have three tables:

  1. one with service details
  2. one table with states that a service is o
6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 10:49

    MySQL Does not supports MINUS or EXCEPT,You can use NOT EXISTS , NULL or NOT IN.

提交回复
热议问题