Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: [OT] SQL "on duplicate key" custom action

by perlfan (Vicar)
on Oct 13, 2021 at 01:02 UTC ( [id://11137458]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    INSERT
      INTO records (PriKey, Foo, Bar)
      VALUES (1, 'Hello', World')
      ON DUPLICATE KEY
        UPDATE Foo=Foo;
    
  2. or download this
    INSERT
      INTO records (PriKey, Foo, Bar)
      VALUES (1, 'Hello', World')
      ON DUPLICATE KEY
        UPDATE Attempts=Attempts+1;
    

Log In?
Username:
Password:

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

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

    No recent polls found