如果两个案例匹配,我正在尝试取回结果:
- table_users.Email='user@email.com'
- table_devices.DeviceUuid='51ec969c-8546-41f4-a748-ec2458c81d17'
但是,即使 table_users.Email='user@email.com' 存在,我也会得到空结果!!!
SELECT table_users.Email, table_users.DeleteFlag, table_devices.DeviceUuid
FROM table_users, table_devices
WHERE table_users.Email='user@email.com'
OR table_devices.DeviceUuid='51ec969c-8546-41f4-a748-ec2458c81d17';
我错过了什么……?出于性能原因,我不想将其分成两个查询。
谢谢!