
Reply to comment
Which of the query will not work?
1. SELECT Column1, ‘Column 2 = ‘, Column2 FROM Table1;
2. SELECT Column1,Column2 FROM Table1 ORDER BY 1;
3. SELECT Column1, Column2*100 FROM Table1;
4. SELECT Column1,Column2 FROM Table1 WHERE Column1 LIKE ‘%ABCD%’;
5. SELECT Column1,Column2 FROM Table1 WHERE Column1=’value1’ ORDER BYColumn3;
Reply
Click the +1 button below to share it with your friends and colleagues
Share this if you liked it!