L longhornrangler Distinguished Apr 26, 2004 15 0 18,510 Oct 13, 2006 #1 need to know how to do a count(select statement) to return the number of rows in my query as a 3rd column
need to know how to do a count(select statement) to return the number of rows in my query as a 3rd column
J jamesgoddard Distinguished Nov 12, 2005 1,105 0 19,290 Oct 16, 2006 #2 The format for the statement is... select count(*) from {objectname} Is that what you are after? you can put in a where clause if it helps... select count(*) from {objectname} where {columnname} = '{string}'
The format for the statement is... select count(*) from {objectname} Is that what you are after? you can put in a where clause if it helps... select count(*) from {objectname} where {columnname} = '{string}'