Rexx - Operazione di aggiornamento
L'operazione UPDATE su qualsiasi database significa aggiornare uno o più record, che sono già disponibili nel database. La seguente procedura aggiorna tutti i record che hanno SEX come "M".
nell'esempio seguente, aumentiamo di un anno l'ETÀ di tutti i maschi.
Esempio
/* Main program */
Call RxFuncAdd 'SQLLoadFuncs', 'rexxsql', 'SQLLoadFuncs'
Call SQLLoadFuncs
if SQLConnect(c1,'testuser','test123','testdb') == 0 then say 'Connect Succedded'
if SQLCommand(u1,"use testdb") == 0 then say 'Changed database to testdb'
sqlstr = "UPDATE EMPLOYEE SET AGE = AGE + 1 WHERE SEX = 'M'"
say SQLCommand(c2,sqlstr)