sql server - What is the purpose of "::" in T-SQL -


in (non-english) book on t-sql (sql server 2005) read about:

select * ::fn_helpcollations() 

though, execution of without "::"

select * fn_helpcollations() 

in sql server 2008 r2 gives same result.

what "::" mean in t-sql?

from msdn:

however, when call sql server built-in functions return table, must add prefix :: name of function:

select * ::fn_helpcollations()

looks can omit :: in sql server 2005 , 2008. :: syntax supported backward compatibility.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -