Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Connect to data source through SQL Statement

Hello,

I am trying  to connect to snowflake data source but through sql statement like below,

 

dharanisrees_2-1670786122884.png

 

and am getting this,

 

 

dharanisrees_1-1670785798151.png

 

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

2 REPLIES 2
v-jialluo-msft
Community Support
Community Support

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.

Anonymous
Not applicable

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors