Microsoft
70-459 · Question #33
You use SQL Server 2012 to maintain the data used by the applications at your company. You plan to create a table named Table1 by using the following statement. (Line numbers are included for…
The correct answer is C. UserName nvarchar(200) COLLATE Latin1_General_CS_AS NOT NULL. See the full explanation below for the reasoning.
Question
You use SQL Server 2012 to maintain the data used by the applications at your company. You plan to create a table named Table1 by using the following statement. (Line numbers are included for reference only.) You need to ensure that Table1 contains a column named UserName. The UserName column will: - Store string values in any language. - Accept a maximum of 200 characters. - Be case-sensitive and accent-sensitive. Which code segment should you add at line 03?
Exhibit
Options
- AUserName nvarchar(200) COLLATE Latin1_General_CI_AI NOT NULL,
- BUserName varchar(200) COLLATE Latin1_GeneraI_CI_AI NOT NULL,
- CUserName nvarchar(200) COLLATE Latin1_General_CS_AS NOT NULL,
- DUserName varchar(200) COLLATE Latin1_General_CS_AS NOT NULL,
- EUserName nvarchar(200) COLLATE Latin1_General_CI_AS NOT NULL,
- FUserName varchar(200) COLLATE Latin1_General_CI_AS NOT NULL,
How the community answered
(50 responses)- B8% (4)
- C74% (37)
- D14% (7)
- E2% (1)
- F2% (1)
Community Discussion
No community discussion yet for this question.
