Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: (OT) MySQL select Question

by dws (Chancellor)
on Jul 27, 2003 at 00:13 UTC ( [id://278165]=note: print w/replies, xml ) Need Help??


in reply to (OT) MySQL select Question

Can anyone suggest a way to make this work?

MySQL 4.0 adds support for UNION. With that (and assuming table1 and table2 have the same columns), you could do something like:

SELECT * FROM table1 WHERE table1.category = 1 UNION SELECT * FROM table1 JOIN table2 ON table1.category = table2.parent_id WHERE table2.parent_id = 1
If you're stuck with an older version of MySQL, you're probably faced with running the two queries separately, then merging the results.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://278165]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (6)
As of 2024-04-25 10:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found