Sunday 16 June 2019

SQL Tutorial : DRL / DQL - PROJECTION

Let's learn about next topic: PROJECTION



PROJECTION:

With projection you will tell the query for which all columns you want to fetch result or if you want any expression to be applied on any or all columns. for eg:

SELECT EMPLOYEE_ID,LAST_NAME,SALARY,HIRE_DATE
FROM EMPLOYEES;

No comments:

Post a Comment