Jump to content

delete IF else UPDATE


joel24

Recommended Posts

i'm trying to either update a messages table or delete the row depending on the result of a select query. this is the logic I want for the operation.

IF (SELECT showInSent FROM messages WHERE m_id = 18) = 1
  THEN UPDATE messages SET showInInbox = 0 WHERE m_id = 18;
ELSE DELETE FROM messages WHERE m_id =18;
END IF;

 

other option is to have 2 queries, though i'd rather do it in 1 if possible?

1- UPDATE messages SET showInInbox=0 WHERE m_id = 18;

2- DELETE FROM messages WHERE showInSent=0 AND m_id=18;

 

Thank you!

 

Link to comment
https://forums.phpfreaks.com/topic/221566-delete-if-else-update/
Share on other sites

This kind of 'complex' logic should be within your application logic (PHP), or a MySQL procedure if you use them. Standard SQL isn't capable of altering the flow like that, it's purely for querying data. You'd have to MySQL's extensions (procedures, functions, triggers, etc.) to use flow-altering constructs like that.

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.