Jump to content

Recommended Posts

I'm fairly new to JOINs, so I don't know what the syntax for this one should be.

 

What I want this to do is two things - I want it to delete any records from pages AND children where $pageid matches the other two columns, which works great. But I also want to delete anything from pages even if there's no corresponding record in children, which doesn't work.

 

DELETE FROM pages,children USING pages INNER JOIN children WHERE pages.id='$pageid' AND pages.id = children.childid

 

I've tried

 

DELETE FROM pages,children USING pages LEFT JOIN children WHERE pages.id='$pageid' AND pages.id = children.childid

 

and also

 

DELETE FROM pages,children USING pages JOIN children WHERE pages.id='$pageid' AND pages.id = children.childid OR pages.id ='$pageid'

 

but neither work, unfortunately. I'm not getting any errors, just no rows returned, so obviously my syntax is off. The MySQL documentation is quite opaque, so I'm hoping somebody here can help :)

Link to comment
https://forums.phpfreaks.com/topic/126468-help-with-a-join/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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