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 > Problem with multi sql query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-18-03, 18:18
jredb jredb is offline
Registered User
 
Join Date: Nov 2003
Posts: 1
Arrow Problem with multi sql query

Problem: Table A: "Categories" [CategoryId] [CategoryName] [CategorySuperId] Table B: "Items" [ItemId] [CategoryId] [ItemName] [DateAdded], Now I would like to select, the latest added items of a group of subcategories where supercategoryid=.. can someone give me a hint, or the basic structure of the sql query I should use?
Thanks in advance
Reply With Quote
  #2 (permalink)  
Old 11-19-03, 00:51
vanekl vanekl is offline
Registered User
 
Join Date: Nov 2003
Posts: 91
SELECT i.ItemId, c.categoryId
FROM Items i, Categories c
WHERE i.CategoryId = c.CategoryId
AND i.DateAdded > '2003-11-19'
AND c.CategorySuperId = X;
Reply With Quote
Reply

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