1.启用双引号作为分隔符

Set Quoted_Identifier on

  

此时:create table dbo.testcolumn("column" char(2))是合法的。

可通过如下语句检查:

Select quoted_identifier,* from sys.dm_exec_sessions where session_id = @@SPID

  

2.查看数据库版本

SELECT SERVERPROPERTY('Edition') 
--Developer Edition (64-bit)

SELECT SERVERPROPERTY('EngineEdition') 
--3

 

相关文章:

  • 2021-12-01
  • 2022-12-23
  • 2021-11-09
  • 2022-01-16
  • 2021-07-11
  • 2021-11-29
  • 2021-09-16
猜你喜欢
  • 2021-07-15
  • 2022-12-23
  • 2020-05-15
  • 2021-03-31
  • 2021-09-21
  • 2022-12-23
  • 2021-08-17
相关资源
相似解决方案