You can comment a statement in T-SQL (for SQL Server) using --
StackOverflow does not show this as a comment.
--Comment goes here and code follows
INSERT INTO TABLE ....
The C# style comment shows up properly.
/*Comment goes here and code follows*/
//Comment goes here and code follows
INSERT INTO TABLE ....
I think the SQL Server style should be supported as well.
') don't work either. I usually do this:''//to trick the highlighter – Michael Haren Nov 17 '09 at 16:12