Below is my shell script snippet. I want serviceVer output should be with quotes. Like '7.6.%'
Currently, it is coming as Output: 7.6.%
Expected => Output: '7.6.%'
#!/bin/ksh
serviceVer VARCHAR2(200) := '7.6.%';
BEGIN
DBMS_OUTPUT.put_line('Output: '|| serviceVer );
.......
Please help.
I tried with serviceVer VARCHAR2(200) := '\'7.6.%\'';
But looks like it is not correct...