Freelancers Network
 
skill list top cap
Homepage
Join the Freelancer's Network
Update your details
Find a freelancer
Post a project
Find a project
Projects Archive
Post a job
Find a job
Jobs Archive
See Dan's Pages
See Andy's Pages
Link to this site
Resources
Join/Leave Forum
Forum Messages
+Additions+ Adverts
Advertising
Contact Us
Subscribe to our newsletter - enter your email address and hit return
Freelancers.net is owned and operated by Andy Stowell and Dan Winchester
skill list end cap
guru web hostcom

Find me again on Freelancers.net

FN-FORUM: Displaying tabular data across recordsets.

date posted 10th September 2007 12:06

Hi

The Freelancers site was down when I posted this earlier, so apologies
if you've got it twice.

This follows on from my post last week. I've got the query working
fine (although I'm hoping it can be advanced to make some of the logic
easier). This is what I've got so far:

http://www.perpetual-solutions.com.servwise.com/schedulepdfcategory.asp?id=
=3D100&groupID=3D4

The problem is that some rows should be merged if they have the same
course code, location, and duration. So for example rows 2 & 3 should
be only the same row (to make use of the grid format). What I was
planning was to apply some logic that stored previous row information,
and looked at the next one before writing out the row. I'm already
thinking this could be a fair bit of code as I'll also have to think
about issues like displaying up to 3 dates in the same table cell.

However I've now noticed that row 7 should also be displayed on the
same row as rows 2 & 3. It has the same course, title, and location
but does not follow sequentially (there are rows in between).

So firstly I'm wondering whether there is a way to order my query by
multiple values. I'm already ordering by course code but I'd then
like to order it further. I.E. could I then order it by location?

This is my current SQL =85

sql =3D "SELECT tblCourseCategories.ID, tblCourseCategories.Description,
tblCourseListings.CourseCategoryID, tblCourseListings.CourseID,
tblCourses.ID, tblCourses.DisplayOrder, tblCourses.Title,
tblCourses.Active, tblCourses.CourseCode1, tblCourses.CourseCode2,
tblCourses.CourseCode3, tblCourses.CourseCode4,
tblCourseAvailability.CourseCode AS CourseCode,
tblCourseAvailability.Supplier, tblCourseAvailability.StartDate,
tblCourseAvailability.Location, tblCourseAvailability.Duration,
tblCourseAvailability.RRP FROM ((tblCourses INNER JOIN
tblCourseAvailability ON (tblCourses.CourseCode4 =3D
tblCourseAvailability.CourseCode) OR (tblCourses.CourseCode3 =3D
tblCourseAvailability.CourseCode) OR (tblCourses.CourseCode2 =3D
tblCourseAvailability.CourseCode) OR (tblCourses.CourseCode1 =3D
tblCourseAvailability.CourseCode)) INNER JOIN tblCourseListings ON
tblCourses.ID =3D tblCourseListings.CourseID) INNER JOIN
tblCourseCategories ON tblCourseListings.CourseCategoryID =3D
tblCourseCategories.ID WHERE tblCourseCategories.ID=3D" & strID & "
ORDER BY tblCourses.DisplayOrder;"

Alternatively, am I approaching this completely wrong? I've never
needed to do this before, but imagine it's a fairly common need. Is
there a nice easy way to do it? I've tried googling but don't even
know what I should be searching for.

TIA
Paul



Messages by Day
September 30th 2007
September 29th 2007
September 28th 2007
September 27th 2007
September 26th 2007
September 25th 2007
September 24th 2007
September 23rd 2007
September 22nd 2007
September 21st 2007
September 20th 2007
September 19th 2007
September 18th 2007
September 17th 2007
September 16th 2007
September 15th 2007
September 14th 2007
September 13th 2007
September 12th 2007
September 11th 2007
September 10th 2007
September 9th 2007
September 8th 2007
September 7th 2007
September 6th 2007
September 5th 2007
September 4th 2007
September 3rd 2007
September 2nd 2007
September 1st 2007


Messages by Month
December 2007
November 2007
October 2007
September 2007
August 2007
July 2007
June 2007
May 2007
April 2007
March 2007
February 2007
January 2007


Messages by Year
2008
2007
2006
2005
2004
2003
2002
2001
2000