Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: MySQL syntax error for ON DUPLICATE KEY UPDATE

by rhesa (Vicar)
on Jul 20, 2008 at 08:12 UTC ( [id://698889]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    insert into  foo    (bar, baz) 
                 values (?,   ?)
    on duplicate key update
                 bar = values(bar)
               , baz = values(baz)
    
  2. or download this
    my $stmt = 'INSERT INTO contact_form (' . join(',', keys %sql) . ') 
                VALUES (' . join(',', ('?') x keys %sql) . ') 
                ON DUPLICATE KEY UPDATE '. join(', ', map { "$_ = values($
    +_)" } keys %sql);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://698889]
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-03-28 08:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found