Mar 16, 2004 #1 bastienk Programmer Joined Mar 3, 2004 Messages 326 Location CA what is wrong with the following? select count(ad_id)as rec_count where ad_deleted = 0 and ad_duration >= '2004-03-16'
what is wrong with the following? select count(ad_id)as rec_count where ad_deleted = 0 and ad_duration >= '2004-03-16'
Mar 16, 2004 #2 sleipnir214 Programmer Joined May 6, 2002 Messages 15,350 Location US It looks like you're missing the "FROM tablename" clause. Want the best answers? Ask the best questions! TANSTAAFL!! Upvote 0 Downvote
It looks like you're missing the "FROM tablename" clause. Want the best answers? Ask the best questions! TANSTAAFL!!
Mar 17, 2004 Thread starter #3 bastienk Programmer Joined Mar 3, 2004 Messages 326 Location CA D'oh Upvote 0 Downvote