Jump to content

Joint tables query


Rommeo

Recommended Posts

my tables are like :

 

tablePost

id | content | categoryid

7 |hello woo| 5

8 |woot woo| 5

 

tableCategory

id| catname

5 | random

6 | favorites

 

I want to print all posts with the names of the categories they belong to,

 

example result :

random : 7 hello woo

random : 8 woot woo

 

 

I tried this :

select * from tablepost where categoryid = ( select id from tablecategory ) order by id desc;

 

I m sure this is all wrong since it did not work, I m not good at queries, can someone help me to figure this out ?

Link to comment
https://forums.phpfreaks.com/topic/240909-joint-tables-query/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.