Guest User

Untitled

a guest
Jan 24th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. cast(MAX(orqtyc) as int) AS QUANTITY,
  2.  
  3. MERGE INTO HNORMANTEST.PLACEMENTS AS P
  4. USING(VALUES(
  5.  
  6. CAST(:QUANTITY as INT),
  7.  
  8. ))
  9.  
  10. $params = [
  11.  
  12. ":QUANTITY" => $row["QUANTITY"],
  13.  
  14. ];
Add Comment
Please, Sign In to add comment