Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Server Object Delimiters

Tags:

sql

sql-server

On the 461 certification exam, several questions require:

The code must NOT use any object delimiters

Any idea what this means?

Thanks

like image 849
Pablo Boswell Avatar asked Aug 13 '15 20:08

Pablo Boswell


1 Answers

Statement means, you should not use

  1. Quoted identifiers are delimited by double quotation marks (")
  2. Bracketed identifiers are delimited by brackets ([ ])

int your code.

so write code with out [] and ""

like image 149
Jahirul Islam Bhuiyan Avatar answered Oct 20 '22 20:10

Jahirul Islam Bhuiyan