Jump to content

Fill an array from a database to display records. Please help


geroid

Recommended Posts

Hi

This is kinda further to a post I had yesterday. I have a problem I could use some help with. I have a database (imagesumprog) with the following fields

 

image_id

image_name

category

prog_date

 

The important field here is the prog_date which holds nothing more than a year (2009, 2010, 2011 etc.). The user can search the database by year i.e. prog_date to retrieve images from the database for that year.

The problem is that these images are stored in one of 3 categories

 

1. Mini Campa

2. Campa Samhraidh

3. Coláiste Samhraidh

 

There may or may not be images in the Mini Campa,  Campa Samhraidh or Coláiste Samhraidh categories.

 

So if I was to write the sql statement in english to say search the database for images for the year 2009, it would be like this:

 

select all images records for the year 2009

display all images first from the Mini Campa category (if any exist)

then display all images from the Campa Samhraidh category (if any exist)

then display all images from the Coláiste Samhraidh (if any exist)

 

So I suppose what I need to do is first check what categories exist for the year 2009 so then I can carry on to display images from the categories that exist.

 

Any ideas how to do this??

 

 

 

Link to comment
Share on other sites

Hi

 

Not sure I see the problem.

 

Do you want a heading saying (say) "No Images For 2009 For Mini Campa"?

 

If you just want the images then:-

 

SELECT image_id, image_name, category, prog_date

FROM imagesumprog

WHERE prog_date = '2009'

 

If you want a null image when there aren't any for a particular year / category:-

 

SELECT a.image_id, a.image_name, b.category, a.prog_date

FROM (SELECT DISTINCT category FROM imagesumprog) a

LEFT OUTER JOIN (SELECT image_id, image_name, category, prog_date FROM imagesumprog WHERE prog_date = '2009') b

ON a.category = b.category

ORDER BY category

 

Note that you probably should have a seperate table of categories.

 

All the best

 

Keith

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.