Never, Ever, Ever Start T-SQL Comments with Two Dashes
138 Comments
There are two ways you can write comments in T-SQL: --By starting a line with two dashes, or /* By framing it on both sides like this */ 123 --By starting a line with two dashes, or /* By framing it on both sides like this */ Never, ever use two dashes. Never. The problem is that…
Read More