Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to find out the latest image uploaded in each of the category of a website from the data base where the structure of the database is :

tbl_cat : cat_id, cat_name, noi (no. of total images in that cat) tbl_img : img_id, cat_id, img_path, imag_caption

Any idea how can I do it using active records. I would also love to understand it with sql query. I know its lame, but I am just starting. Sorry about that.

share|improve this question
Are you recording in the database the time at which each image was uploaded? – eggyal Sep 3 '12 at 19:42

2 Answers

up vote 0 down vote accepted

The database schema given does not record the creation date in either the category or image tables. The only legitimate way I can think to obtain this information is to command line cd into the images directory and perform a ls --full-time --sort=time (on Debian based systems) or it's equivalent.

Update 1 after comments:

Run: SELECT c.cat_id, c.cat_name, i.doc, i.img_path FROM tbl_cat c LEFT JOIN tbl_img i ON i.cat_id = c.cat_id WHERE doc = (SELECT MAX(doc) FROM tbl_img i2 WHERE i2.cat_id = c.cat_id

share|improve this answer
Sorry, I thought the time field won't be required, I have stored the date of creation for the image ! So how can we use it ? – Vinay Singhal Sep 4 '12 at 13:08
Where have you stored the creation date of the image? Your schema as you've said is: "tbl_img : img_id, cat_id, img_path, imag_caption" – Jordan Arseno Sep 4 '12 at 17:18
there is another field called 'doc' in the tbl_img – Vinay Singhal Sep 5 '12 at 12:12
Yea? And what are some examples in the doc column? – Jordan Arseno Sep 5 '12 at 13:36
1  
I did that, very new to StackOverflow, learning things here. Thanks anyways :) – Vinay Singhal Sep 7 '12 at 1:30
show 4 more comments

See the below url i think it is very help full to you:-

Active Record Class

http://codeigniter.com/user_guide/database/active_record.html

Active record, help needed

http://codeigniter.com/forums/viewthread/219487/

mysql to codeigniter active record help

mysql to codeigniter active record help

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.