Viewing 5 posts - 1 through 6 (of 6 total)
Jeff,
Thank you for the elegant solution I was after.
Intrigued, I added this code into a stored procedure and compared the performance against the existing, the average over 10 runs...
September 23, 2012 at 4:31 pm
Hi Dwain,
Thanks for your reply, it's not quite what I'm after though.... Your solution appears to provide a count of the Tariffs for each Customer, I need to get a...
September 23, 2012 at 1:59 pm
hi Rich,
Thank you for your reply! I was hoping this was going to be area where the phrase "It depends...." wouldn't appear, oh well!
April 30, 2012 at 1:54 pm
select count(*) from table
and
select count(1) from table
will return the same results, but
select count(column name) from table
will return the number of non null columns
May 14, 2009 at 4:06 am
A reply from another old Developer....
Over the years SQL has expanded greatly, in the days of SQL 7 / 2000, the developers bible "Inside SQL" by Kalen Delaney was one...
April 4, 2009 at 4:49 am
Viewing 5 posts - 1 through 6 (of 6 total)