Respuesta :

Answer:

See explanation

Explanation:

The table definition is not given. However, I'll assume the following.

Table Name: Employees

Table Columns: FIRSTNAME, LASTNAME, AGE, DEPARTMENT

The sql statement is as follows:

SELECT FIRSTNAME, LASTNAME, AGE FROM EMPLOYEES WHERE AGE < 50

Analysis of the above

SELECT ---- This signifies that the query is to retrieve data

FIRSTNAME, LASTNAME, AGE  --- This signifies the columns to fetch data

FROM EMPLOYEES  ---- this signifies the table name

WHERE AGE < 50 --- This signifies the condition of the query

ACCESS MORE
EDU ACCESS