SQL [message #372988] |
Wed, 21 March 2001 02:48 |
mohan Kumar
Messages: 2 Registered: March 2001
|
Junior Member |
|
|
suppose assume that you have colums empno,ename in emp table.
you can give select statement like this
1. select empno employeenumber,ename employeename from emp;
2. select empno "employee number",ename "employee name" from emp;
both will work the difference is if you want to give space in the title of the column then you have to use the 2nd statement other wise use 1st statement.
hope this clarifies to you.
Mohan.
|
|
|