March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I am trying to connect to snowflake data source but through sql statement like below,
and am getting this,
my sql statement is,
select loan_acct_id, loan_current_status, approved_amount, channel, to_date(to_timestamp(funded_on, 'YYYY-MM-DD HH:MI:SS')) as funded_on_ from prod_datalake.datamart.vw_dim_loan_loan_status
where loan_current_status = 'Loan Funded' and channel = 'In Network' and funded_on_ = current_date();
What is going on wrong here!!
Please do help!!
Thanks,
Dharani
Hi @Anonymous,
According to your description, your question is that the SQL statement went wrong.
It may be that there is an error in this part of the statement:
to_date(to_timestamp(funded_on, 'YYYY-MM-DD HH:MI:SS')) as funded_on_
You can try:
select
loan_acct_id,
loan_current_status,
approved_amount,
channel,
to_date(funded_on) as funded_on_date
from prod_datalake.datamart.vw_dim_loan_loan_status
where loan_current_status = 'Loan Funded' and channel = 'In Network' and funded_on_date = current_date();
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
This query perfectly works in the snowflake.
funded_on column is in text with timestamp. I wont be able to use to_date directly on the funded_column
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |