This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello,
I am trying to get records from a database (ODBC connection) where the documentDate is greater than 1/04/2017.
E.G i have entered this SQL statement...
SELECT Amount, quantity, documentDate FROM SalesLineItem
WHERE documentDate > '1/04/2017'
Data Type from the database
I keep getting errors, for example...... Invalid combination of types compared: DATE and VARCHAR" or Invalid combination of types compared: DATE and BIGINT" if i have the date format as 1/04/2017
This is the format of documentDate in power bi
Any thoughts on how to fix this? have I go the wrong format after the WHERE statement?
Many thanks
Solved! Go to Solution.
The data type was a timestamp and the solution that worked for me is as follws.
SELECT Amount, quantity, documentDate FROM SalesLineItem
WHERE documentDate > {ts '01/04/2017'}Thank you for your input.
It might be safer to format your date a different way.
eg.
SELECT Amount, quantity, documentDate FROM SalesLineItem WHERE documentDate > '2017-04-01'
What is the datatype of the documentDate column in the SalesLineItem table in the database?
The documentDate column datatype is DateTime
Thank you
The data type was a timestamp and the solution that worked for me is as follws.
SELECT Amount, quantity, documentDate FROM SalesLineItem
WHERE documentDate > {ts '01/04/2017'}Thank you for your input.
No, the suggestion did not work. I still get the same errors!!!!
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 33 | |
| 26 | |
| 23 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 43 | |
| 28 | |
| 24 | |
| 22 |