Something I learned today is the ability to using named parameters when calling a function in C#. While writing T-SQL code, I always like to explicitly name variables, in order to provide transparency to whoever is reading the code.
Compare this:
INSERT INTO TableA
SELECT * FROM TableB
to...