When do you consider not coding against common denominator so you can just take advantage of your tools unique features(be it for performance or clarity reasons)? What are those examples?
This example comes to mind, and I really like the extra clarity this construct brings to the table:
select * from person
where (lastname,firstname)
not in (select lastname,firstname from registered_members)
As opposed to common denominator code:
select * from person
where not exists
(select * from registered_members
where lastname = person.lastname and firstname = person.firstname)
VB.NET's Try Catch When also comes to mind. But since I don't use VB.NET, I don't know if some VB.NET programmers exploits this feature or not.