322 | 322 | update wrbd.operation_op set (op_p1,op_p2,op_p3,op_nbtotal,op_density,op_totalestim) =(9,2,2,13,0.003,20) where op_id=14; |
323 | 323 | update wrbd.operation_op set (op_p1,op_p2,op_p3,op_nbtotal,op_density,op_totalestim) =(0,2,0,2,0.007,2) where op_id=2; |
324 | | update wrbd.operation_op set (op_p1,op_p2,op_p3,op_nbtotal,op_density,op_totalestim) =(17,15,3,35,0.097,49) where op_id=5; |
325 | | }}} |
| 324 | update wrbd.operation_op set (op_p1,op_p2,op_p3,op |
| 325 | _nbtotal,op_density,op_totalestim) =(17,15,3,35,0.097,49) where op_id=5; |
| 326 | }}} |
| 327 | |
| 328 | Adding a constraint |
| 329 | |
| 330 | {{{ |
| 331 | alter table wrbd.fish_fi add CONSTRAINT c_fk_fi_op_id FOREIGN KEY (fi_op_id) |
| 332 | REFERENCES wrbd.operation_op (op_id) MATCH SIMPLE |
| 333 | ON UPDATE NO ACTION ON DELETE NO ACTION |
| 334 | }}} |