카테고리 없음
[oracle] '&' 문자 insert 하기
냐옴
2023. 1. 19. 15:12
--Substitution Variable(&) 을 off 시킨다
set define off
--insert 를 실행한다
insert into tableA (col) values ('date&time');
--Substitution Variable(&) 을 다시 on 시킨다
set define on