SQL

What is the best SQL data type for a Boolean?

BIT Correct Answer!REALUNIQUEIDENTIFIERNCHARTINYINTEGERShow Answer!

The data type which is supported in SQL?

CURSORALL OF THESE Correct Answer!MONEYTINYINTIMAGEShow Answer!

SQL is a procedural language

False Correct Answer!TrueShow Answer!

Which of the following is the correct SQL statement to use to remove rows from a table?

DELETE Correct Answer!DROPREMOVEAll of the optionsShow Answer!

In SQL a NULL value is treated as a blank or 0

False Correct Answer!TrueShow Answer!

With _ locking a user may have to redo their work when a conflict occurs

optimistic Correct Answer!deterministicpessimisticShow Answer!

Which of the following commands denote DML commands

INSERT Correct Answer!CREATEALTERAll of theseShow Answer!

What is the different between Truncate and Delete ?

Truncate deletes all items and delete only deletes each row Correct Answer!Truncate resizes the data page of a table and delete performs operations...