If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > categories and sub categories in mysql

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-17-10, 07:37
linux1880 linux1880 is offline
Registered User
 
Join Date: Jul 2010
Posts: 39
categories and sub categories in mysql

Dear friends,

I am trying to build application in php which have category and subcategories till 3rd level. Please show me example ? Thanks
Reply With Quote
  #2 (permalink)  
Old 08-17-10, 09:40
healdem healdem is online now
Jaded Developer
 
Join Date: Nov 2004
Location: out on a limb
Posts: 9,250
so you have a self referncing foreign key

tbl:Persons
ID
Title
Forenames
......
ManagerID 'nullable FK references tblPersons.ID

then you have your query....
its dumb but I forget the correct syntax, it should be something sort of similar to
select my,column,list from Persons as A
right join Persons as B on b.ID = a.ManagerID
right join Persons as C on C.ID = b.ManagerID
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton
Reply With Quote
  #3 (permalink)  
Old 08-17-10, 11:06
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,525
please, use left outer joins, not right outer joins

this might help --> Categories and Subcategories
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #4 (permalink)  
Old 08-17-10, 13:09
healdem healdem is online now
Jaded Developer
 
Join Date: Nov 2004
Location: out on a limb
Posts: 9,250
itsafaircopyerhooner
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton
Reply With Quote
  #5 (permalink)  
Old 08-18-10, 02:29
linux1880 linux1880 is offline
Registered User
 
Join Date: Jul 2010
Posts: 39
Thanks r937,

I have learned a lot from you, that's anothor great things, it look like your own site, please write more tutorials on sql i have added that site to my favourite. Thanks
Reply With Quote
Reply

Tags
mysql

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On