Microsoft
70-459 · Question #97
You use SQL Server 2012 to maintain the data used by the applications at your company. You plan to create a disk-based table named Tablel by using the following statement. (Line numbers are included f
The correct answer is D. UserName nvarchar(200) COLLATE Latin1_General_CI_AI 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 disk-based table named Tablel by using the following statement. (Line numbers are included for reference only.) You need to ensure that Tablel contains a column named UserName. The UserName column will: - Store string values in any language. - Accept a maximum of 200 characters. - Be case-insensitive and accent-insensitive. Which code segment should you add at line 03?
Options
- AUserName nvarchar(200) COLLATE Latin1_General_CS_AS NOT NULL,
- BUserName varchar(200) COLLATE Latin1_General_CI_AI NOTNULL,
- CUserName varchar(200) COLLATE Latin 1_General_CS_AS NOT NULL,
- DUserName nvarchar(200) COLLATE Latin1_General_CI_AI NOT NULL,
How the community answered
(48 responses)- A10% (5)
- B4% (2)
- C15% (7)
- D71% (34)
Community Discussion
No community discussion yet for this question.