I have this query
select *
from sysobjects
where type = "U"
and the result is exactly the same as
select *
from sysobjects
where type = 'U'
So I wonder what is the difference between the single quotes '
and double quotes "
?
I have this query
select *
from sysobjects
where type = "U"
and the result is exactly the same as
select *
from sysobjects
where type = 'U'
So I wonder what is the difference between the single quotes '
and double quotes "
?