Which three Transact-SQL segments should you use to develop the solution?

Posted by: Pdfprep Category: 70-461 Tags: , ,

DRAG DROP

You use a Microsoft Azure SQL Database instance named ContosoDb. ContosoDb contains a table named Customers that has existing records.

The Customers table has columns named Id and Name.

You need to create a new column in the Customer table named Status that allows null values and sets the value of the Status column to Silver for all existing records.

Which three Transact-SQL segments should you use to develop the solution? To answer, move the appropriate Transact-SQL segments from the list of Transact-SQL segments to the anwer area and arrange them in the correct order.

Answer:

Explanation:

NULL or NOT NULL specifies whether the column can accept null values. Columns that do not allow null values can be added with ALTER TABLE only if they have a default specified or if the table is empty. NOT NULL can be specified for computed columns only if PERSISTED is also specified. If the new column allows null values and no default is specified, the new column contains a null value for each row in the table. If the new column allows null values and a default definition is added with the new column, WITH VALUES can be used to store the default value in the new column for each existing row in the table.

References: https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-table-transact­sql?view=sql-server-2017

Leave a Reply

Your email address will not be published.