Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to use SQL DECLARE with a UserTable type
SQL DECLARE @Variable UserTable;
It works properly in SSMS but error appears in QlikView
ErrorMsg: Parameter or variable '@Variable' has an invalid data type.
Any help would be appreciated.
You need to define the table in the declare:
You need to define the table in the declare:
Thanks for quick reply.
It works!