By default the statement terminator is ;
in dashDB
.
I want to execute a statement with terminator as @
--#SET TERMINATOR @;
CREATE TABLE employee (id INT,
name VARCHAR(10),
salary DECIMAL(9,2))@
It fails with below exception :
An unexpected token @ was found following salary DECIMAL(9,2)).
Expected tokens may include: "END-OF-STATEMENT".. SQLCODE =-104, SQLSTATE=42601