我正在創建一個易失性表並嘗試向表中插入行。我可以上傳一排像下面...插入多行SQL Teradata
create volatile table Example
(
ProductID VARCHAR(15),
Price DECIMAL (15,2)
)
on commit preserve rows;
et;
INSERT INTO Example
Values
('Steve',4);
然而,當我嘗試上傳多個我得到的錯誤:
"Syntax error: expected something between ')' and ','."
INSERT INTO Example
Values
('Steve',4),
('James',8);
這實際上給出了一個錯誤:一個SELECT for UNION必須引用一個表 –