Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

Which syntax feature classifies the explicit string, numeric, or binary values used in SQL queries?

A.

Literals

B.

Comments

C.

Identifiers

D.

Keywords

Which function measures a numeric value's distance from 0?

A.

CONCAT

B.

LOWER

C.

FROM

D.

ABS

Which keyword can be used to combine two results into one table?

A.

UNION

B.

MERGE

C.

INTEGRATE

D.

CONSOLIDATE

Which primary key values consist of a single field only?

A.

Simple

B.

Partition

C.

Stable

D.

Meaningless

Which function is considered an aggregate function?

A.

MAX

B.

TRIM

C.

ABS

D.

DESC

Which SELECT statement uses valid syntax for SQL?

A.

SELECT "column name", "column name" FROM "table name" WHERE "column name"

B.

SELECT column1, column2 WHERE condition FROM table_name;

C.

SELECT ALL column1, column2 FROM table_name;

D.

SELECT column1, column2 FROM table_name;

Which keyword is used to introduce a limiter in a SELECT statement?

A.

FROM

B.

DROP

C.

INTO

D.

WHERE

Which keyword combines INSERTS, UPDATES, and DELETES operations into a single statement?

A.

INTO

B.

JOIN

C.

MERGE

D.

DROP

Which phase of entity-relationship modeling refers to the maxima and minima of relationships and attributes?

A.

Cardinality

B.

Physical design

C.

Attribute minimum

D.

Partition

Which SQL command uses the correct syntax to add a new employee "John Doe" to the Employee table?

A.

INSERT Employee { "John Doe" };

B.

INSERT INTO Employee (Name) VALUES ("John Doe");

C.

INSERT INTO Employee ("John Doe");

D.

INSERT Employee (Name) Values ("John Doe");