- 4
What does "Custom Columns" mean?
2 odpowiedzi
+ 2
as
- 2
custom column means suppose there is a table which contains 2 fields i.e Name and Salary, while you are selecting the query you need the Name column should be reflected as EMPLOYEE _NAME for that purpose we can use AS to rename and get the name as liked.
SELECT NAME AS EMPLOYEE_NAME, SALARY FROM EMPLOYEE;
Hope this will clear..