Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
My work around solution:
1. Change schema type from DATE to String in the tDBInput component
2. CAST column to VARCHAR in SQL Query:
SELECT
CAST (column_name as CHAR(32)) as column_name
FROM table_name
Best Regards.,