80-20 rule in action in my relationships with T-SQL is sooo true. I like 20% of T-SQL, and remaining 80% is a massive PITA. It's 2009, and T-SQL still does not have:
- Even rudimentary type inference (i.e.
declare @i = 5; at least glad they addeddeclare @i int = 5in SQL Server 2008) - Consistency in calling sprocs/functions/built-in functions (i.e.
exec fooexecutes a sproc, whereasexec("foo")executes whatever there is in the string supplied) - Consistency in declaring parameters to sprocs/functions. Drives me mad.
- Absolutely arbitrary and incomprehensible limitations with regards to what sprocs and functions can and can not do (i.e. I cannot call a sproc from within a function)
- Inability to
execa sproc directly into table-variable (set @t = exec sp_foo) without having to define it first.
Over to you. What are your "favorite" ones?
EDIT Downvoters, wouldn't you mind explaining a reason for not liking the question?
