what @ mean in sql statement?
C#
3
Posts
2
Posters
0
Views
1
Watching
-
I see someone coding today. I found that his SQL statement got @ symbol in front of it. what is @ that mean? Examples Coding:- sqlText = @"SELECT DISTINCT TOP 100 PERCENT dbo.Member.id, ========================================= what is the @ meaning and why need it?? any one can tell me. Thank you^^
-
I see someone coding today. I found that his SQL statement got @ symbol in front of it. what is @ that mean? Examples Coding:- sqlText = @"SELECT DISTINCT TOP 100 PERCENT dbo.Member.id, ========================================= what is the @ meaning and why need it?? any one can tell me. Thank you^^
-
Its not the sql statement with the @ in, the @ signifies that its a verbatim literal string iirc.
o.. thank a lot^^ now i understand already~~