We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UPDATE PORTAL.GW_WORK_RQT SET WK_RQT_START = '2018-07-06 07:30:00' WHERE ( rowid = 'AAAWFuAAGAACtr6AAJ');
아래와 같이 type변환 후 정상적으로 수정이 가능했습니다. UPDATE PORTAL.GW_WORK_RQT SET WK_RQT_START = to_date('2018-07-06 07:30:00' , 'yyyy-mm-dd hh24:mi:ss') WHERE ...
적용전에 SQL을 직접 수정해서 수정된 쿼리로 실행되도록 하는것도 방법일것 같습니다.
The text was updated successfully, but these errors were encountered:
지금 다시 확인해보니 저장전에 표시되는 SQL미리 보기 화면에서 쿼리를 직접 수정하면 수정된 쿼리로 실행되면서 정상적으로 수정이 가능하긴 하네요.
date형이거나 time형인경우 해당 Dialog를 표시하고 선택하게 하면 추가로 수정없이 수정할 수 있을까요?
Sorry, something went wrong.
No branches or pull requests
UPDATE PORTAL.GW_WORK_RQT SET WK_RQT_START = '2018-07-06 07:30:00'
WHERE ( rowid = 'AAAWFuAAGAACtr6AAJ');
아래와 같이 type변환 후 정상적으로 수정이 가능했습니다.
UPDATE PORTAL.GW_WORK_RQT
SET WK_RQT_START = to_date('2018-07-06 07:30:00' , 'yyyy-mm-dd hh24:mi:ss')
WHERE ...
적용전에 SQL을 직접 수정해서 수정된 쿼리로 실행되도록 하는것도 방법일것 같습니다.
The text was updated successfully, but these errors were encountered: