What is the usage of '\' and '$' in T-SQL?
问题 As I found (in SQL Server books): \ (Backslash) (Transact-SQL) Breaks a long string constant into two or more lines for readability. and SELECT Clause (Transact-SQL) ... $IDENTITY | $ROWGUID And $PARTITION (Transact-SQL) Returns the partition number into which a set of partitioning column values would be mapped for any specified partition function. of usage of \ and $ in T-SQL specially SQL Server. Now, I have a query like this: SELECT \ a, $ b, \11 c, $12 d; That have a valid result like