Review the 'CREATE TABLE' statement below. Which option, when placed in the blank space, ensures that the BookISBN column will not contain any duplicate values?tsqlCREATE TABLE Books ( BookID int PRIMARY KEY, BookISBN char(13) NOT NULL _____, BookTitle nvarchar(100) NOT NULL);

🎲 Try a Random Question  |  Total Questions in Quiz: 38  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Transact-SQL (T-SQL) Quiz — practice the complete quiz, review flashcards, or try a random question.

Transact-SQL (T-SQL) MCQs For LinkedIn Skill Assessments.

T-SQL is an extension to the SQL used to interact with relational databases. 


Review the 'CREATE TABLE' statement below. Which option, when placed in the blank space, ensures that the BookISBN column will not contain any duplicate values?<br>tsql<br>CREATE TABLE Books (<br> BookID int PRIMARY KEY,<br> BookISBN char(13) NOT NULL _____,<br> BookTitle nvarchar(100) NOT NULL<br>);<br>