The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I want to show in my Query the timeframe when everytime refreshed is done.
I'm using the table called gbkmut with several fields.
How can I do this?
Thanks...tksnota...
Solved! Go to Solution.
SELECT GETDATE() as timestamp
Note this will be very wasteful if you add that column to your query. Better to use it as a separate query.
SELECT GETDATE() as timestamp
Note this will be very wasteful if you add that column to your query. Better to use it as a separate query.