explain these select statements!
- by user329820
Hi,
I can not get the difference betwwn these statements? would you please help me,I have read some sample of select statements but I did not get these ones.
SELECT 'B' FROM T WHERE A = (SELECT NULL);
SELECT 'C' FROM T WHERE A = ANY (SELECT NULL);
SELECT 'D' FROM T WHERE A = A;
I use MySQL