Comment on Column with & symbol [message #562314] |
Tue, 31 July 2012 05:17 |
sbmk_design
Messages: 88 Registered: April 2007 Location: CHENNAI
|
Member |
|
|
Hi,
I wanted to Comment on Column with & symbol. Can u pls correct the syntax
Syntax
SQL> comment on column scott.emp.empname is ' Jerry&Tom. ' ;
ERROR
Enter value for t:
SP2-0546: User requested Interrupt or EOF detected.
Thanks in advance
sbmk
|
|
|
|
|
|
|
Re: Comment on Column with & symbol [message #565313 is a reply to message #565310] |
Mon, 03 September 2012 06:41 |
|
Michel Cadot
Messages: 68733 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
It is better to show your test than to tell it:
SQL> set Escape '\'
SQL> comment on column t.id is 'TOM \& Jerry';
Comment created.
then we are sure there is no error in your test and it fits what you say, and it is easier to follow.
Regards
Michel
[Updated on: Mon, 03 September 2012 06:42] Report message to a moderator
|
|
|