NJ
NJ
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> select eid,esal from emp; -- it will show two column at top to end with each
row
+-----+-------+
| eid | esal |
+-----+-------+
| 90 | NULL |
| 100 | 20000 |
| 101 | 15000 |
| 102 | 15000 |
| 104 | 10000 |
| 112 | 30000 |
| 113 | 50000 |
| 114 | 40000 |
+-----+-------+
8 rows in set (0.00 sec)
mysql>