Is there any way to get the correct conditions? Both options in MYSQL fail to achieve expected results
P粉3948122772023-09-15 13:36:02
0
1
560
SELECT cstmr_type FROM add_vehicle
WHERE cstmr_type = 'Visitor' AND cstmr_type = 'Hospital';
SELECT cstmr_type FROM add_vehicle
WHERE cstmr_type = 'Visitor' & 'Hospital';
Try to use the IN keyword