0
我想在分號後有一個換行符的表上在SQL Plus中運行插入腳本。我可以在使用命令在分號後在SQL * Plus中插入新行
SET SQLBLANKLINES ON
插入新行但當我嘗試插入其中一個分號後有一個新行的字符串,它賦予錯誤
ORA-01756: quoted string not properly terminated
和
unknown command beginning "Bye;',..." - rest of line ignored.
當我嘗試像這樣插入
INSERT INTO M_TABLE VALUES('Hi!
My Name is Tom;
Bye', 0)