SELECT FIRST_NAME, LAST_NAMEIn second part of the clause i need to specify the table from which i want data to be retrieved. For that i am using the FROM statement. For example:
SELECT *
FROM EMPLOYEES
Now we need to put together those two statement and we get
SELECT FIRST_NAME, LAST_NAME
FROM EMPLOYEES
SELECT *
FROM EPLOYEES
Now we have to end the statement. This can be done using semicolon ";".
SELECT FIRST_NAME, LAST_NAME
FROM EMPLOYEES;
SELECT *
FROM EMPLOYEES;
No comments:
Post a Comment