DRAG DROP
You want to add a new GUID column named BookGUID to a table named dbo.Book that already
contains data.
BookGUID will have a constraint to ensure that it always has a value when new rows are inserted
into dbo.Book.
You need to ensure that the new column is assigned a GUID for existing rows.
Which four Transact-SQL statements should you use? (To answer, move the appropriate SQL
statements from the list of statements to the answer area and arrange them in the correct order.)

Explanation:
Actually, in the real world, you don’t have to use WITH VALUES at the end of the statement and it
works just as well. But because the question specifically states which FOUR TSQL statements to use,
we have to include it.
http://msdn.microsoft.com/en-us/library/ms190273.aspx
WITH VALUES must be used. If not, the value in the already existing columns would be NULL.
Quote:
The following example adds a nullable column with a DEFAULT definition, and uses WITH VALUES to provide values for each existing row in the table. If WITH VALUES is not used, each row has the value NULL in the new column.
0
0
The first one should be…Add BookGuid varchar(10) NOT NULL
0
0
newid() does not fix in a varchar(10) type
0
0
8-6-1-3
1
0