Home >Database >Mysql Tutorial >Received error message: Scalar types are not allowed in SAP HANA
A few points about the code that creates the stored procedure, you can edit and try
PROCEDURE "SLT_DELETE"."HCDW.IT.IT::TO_TIMESTAMP_CALL" (IN IN_DATE DECIMAL(15), OUT OUT_DATE TIMESTAMP) LANGUAGE SQLSCRIPT AS --DEFAULT SCHEMA <default_schema_name> --READS SQL DATA AS BEGIN select to_timestamp(IN_DATE) into OUT_DATE FROM DUMMY; END;
In line 32, you used the following:
SELECT: ORGID_ARTIKEL into
But the correct syntax should be like this:
SELECT "ORGID_ARTIKEL" into
The above is the detailed content of Received error message: Scalar types are not allowed in SAP HANA. For more information, please follow other related articles on the PHP Chinese website!