6. QUEL and EQUEL Statements : End Transaction Statement--Terminate an MQT : Example
 
Share this page                  
Example
The following example shows a simple MQT: two append statements framed by begin transaction and end transaction statements:
##  begin transaction
##  append to employee(empname="jones,bill", 
##   sal=10000, bdate=1914)
##  append to employee(empname="smith,stan", 
##   sal=20000, bdate=1948)
##  end transaction
## /* commits new rows to table */