Blank Power Query Template for a Raw SQL Query

You want to send raw sql from Power Query to your database because you're better at query folding than Excel.

me@jaykilleen.com wrote this almost 4 years ago and it was last updated almost 4 years ago.


← Back to the Posts

let
  Source = Odbc.Query("dsn=odbc_connection_name", 
    "
SELECT 
  COUNT(*)
FROM
  dates
    "
  )
in
  Source

Similar