Posts by Renato Martins • 29 points
2 posts
-
0
votes2
answers54
viewsA: Take name via regex
Use the match (?:name=) "( w*)\" and take the first group.
phpanswered Renato Martins 29 -
1
votes3
answers113
viewsA: Is it possible to update to 1 table using another condition?
Try this: UPDATE ivr_campanha campanha SET CONTENT='VALOR ALTERADO' WHERE campanha.status = 0 AND campanha.id IN (SELECT contatos.id FROM ivr_contatos contatos WHERE contatos.campanha = campanha.id…