Last active
April 17, 2018 00:51
-
-
Save sezemiadmin/13086646a458cea3460f0ca17b14b8e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EXEC SQL OPEN X; | |
EXEC SQL FETCH X INTO :NAME, :DEPT, :SALARY; | |
EXEC SQL UPDATE 従業員 | |
SET 給与 = 給与 * 1.1 | |
WHERE CURRENT OF X; | |
EXEC SQL CLOSE X; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment