- Posts: 14
- Thank you received: 0
Date as string in sql editor
10 years 4 months ago #7325
by JHeinz
Date as string in sql editor was created by JHeinz
I have Advanced ETL latest version. I've been running into difficulties pulling data by date because the sql editor only recognizes my date fields as widestring. I use sql on the Azure platform. I've tried convert and cast but nothing works. Can you give me an example of a string to date conversion that works in the sql editor?
Please Log in or Create an account to join the conversation.
10 years 4 months ago #7328
by admin
Mike
ETL Architect
Replied by admin on topic Date as string in sql editor
This one should work
Select * from table where date_field<'2001-12-13 01:02:15'
(this is standard ODBC format works 99 percent).
Id it does not publish your sql together with some screenshots
Peter
Select * from table where date_field<'2001-12-13 01:02:15'
(this is standard ODBC format works 99 percent).
Id it does not publish your sql together with some screenshots
Peter
Mike
ETL Architect
Please Log in or Create an account to join the conversation.