我无法在 oracle 9i 表中插入电子邮件 ID。我正在使用腻子。
INSERT INTO email(mail_list)values('sundar@abc.com');
我收到以下错误: SQL> INSERT INTO email(mail_list)values('sundar@abc.com');
SP2-0042: unknown command "abc.com')" - rest of line ignored.
腻子不接受@
符号。
我在其中一个门户网站中阅读了以下内容:
The problem is common with unix environment with the display terminal keyboard settings. The sqlplus session had trouble interpreting the "@" sign, because it was assigned in the terminal to the "kill" setting.
如何纠正这个问题?
谢谢
桑达尔