标签: sql-server tsql
我有这个查询
select * from sysobjects where type = "U"
,结果与
select * from sysobjects where type = 'U'
所以我想知道单引号'和双引号"之间有什么区别?
'
"