Viewing 4 posts - 1 through 4 (of 4 total)
I found a tip here a while ago that said there was a faster way to get the record count than using count(*)
SELECT rows FROM sysindexes WHERE id = OBJECT_ID('tblUsers')...
March 3, 2005 at 10:38 am
Are you using a cfqueryparam to insert the data into your table? That would probably help.
Are you converting the data from the form using HTMLEditFormat or HTMLCodeFormat? That would convert...
March 3, 2005 at 10:05 am
Thanks very much -- I actually realized that after my post and it solved the problem. I am creating a dynamic SQL statement for the search and so I...
September 26, 2003 at 5:28 pm
Is there an advantage in putting the inequality in the join statement rather than in a WHERE clause? Does the query run faster?
example:
SELECT s.CourseID,s.SectionNumber,
c.RoomCapacity, s.SectionCapacity
FROM tb_ClassSection...
February 11, 2003 at 1:34 pm
Viewing 4 posts - 1 through 4 (of 4 total)