Quiz
What is the best SQL data type for a Boolean?
BIT
Correct Answer!REALUNIQUEIDENTIFIERNCHARTINYINTEGERShow Answer!
Quiz
In SQL Server which of the following data types has the highest data type precedence?
INTDATETIME
Correct Answer!VARCHARFLOATNUMERICShow Answer!
Quiz
The data type which is supported in SQL?
CURSORALL OF THESE
Correct Answer!MONEYTINYINTIMAGEShow Answer!
Quiz
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!
Quiz
What will be the output of the following statement? SELECT ROUND(123.89, -1)
120.00
Correct Answer!123.00124.00123.90Show Answer!
Quiz
With _ locking a user may have to redo their work when a conflict occurs
optimistic
Correct Answer!deterministicpessimisticShow Answer!
Quiz
Which of the following commands denote DML commands
INSERT
Correct Answer!CREATEALTERAll of theseShow Answer!
Quiz
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...