You are on page 1of 1

A system used to concatenate one column to another column.

Select one:
a. ||
b. *
c. AS
d. ( )

This is use to Selects the columns in a table that are returned by a query. Selects a few or as many of the
columns as required.

Select one:
a. Joins
b. Inclusion
c. Selection
d. Projection

This is use to create expression with number and date values.

Select one:
a. Numerical Values
b. Logical Condition
c. MDAS operator
d. Arithmetic expression

It is a value that is unavailable, unassigned, unknown, or inapplicable.

Select one:
a. Space
b. Blank
c. NULL
d. Zero

This is used to selects the rows in a table that are returned by a query. Various criteria can be used to
restrict the rows that are retrieved.

Select one:
a. Inclusion
b. Projection
c. Selection
d. Joins

This character is used to override the default precedence or to clarify the statement.

Select one:
a. ( )
b. AS
c. ||
d. *

It is a character, a number, or a date that is included in the SELECT statement.

Select one:
a. Table name
b. Literal
c. Alias
d. String

Supposed that the user uses the ff SELECT statement: what will be the possible output.
SELECT GRADE AS STUDENT MARK FROM GRADE_REPORT;

Select one:
a. Will display the column GRADE rename as STUDENT MARK
b. Error because of missing “” mark.
c. Error because of the keyword AS.
d. Will display all rows and columns.

Which of the following is not true about writing SQL statements?

Select one:
a. Clauses are usually placed on separate lines for readability and ease of editing.
b. Keywords cannot be split across lines or abbreviated.
c. SQL statements are not case sensitive.
d. Indents should be used to make code more readable.

This is used to brings together data that is stored in different tables by specifying the link between them.

Select one:
a. Projection
b. Inclusion
c. Joins
d. Selection

You might also like