Hello,
I have created the below sql query to combine a date field and a time field. The query works in Sql Management Studio, but, I receive an error when I attempt to run the same query in a Zoho query table.
Query:
SELECT
PREP_START_DT = convert(varchar, Prep_Start_Date, 103) + ' ' + convert(varchar, Prep_Start_Time, 108)
FROM "HQProductionPerformance"
WHERE Prep_Start_Date >= '2017-08-27'
Zoho Query Error:
Length of the display column name 'CAST(PREP_START_DT as CHAR) CAST(CONVERT(varchar, Prep_Start_Date, 103) as CHAR) , ' ' , CAST(CONVERT(varchar, Prep_Start_Time, 108) as CHAR) )' exceeds 100 characters. Length of the display column name should be less than 100 characters.
Any help would be greatly appreciated.