Forum Discussion

annerogers's avatar
annerogers
Helper I
9 years ago
Solved

Data from Table accessed through SQL database

I am wondering if someone knows the answer to this question. I have imported data tables from SQL Server.  The tables are huge with many columns (100+ per table).  I have been told that Power BI pre...
  • Anonymous's avatar
    Anonymous
    9 years ago

    It sounds like you aren't familiar with SQL; if I were you, I would go with the first method I mentioned above. It'll get you where you need to go without having to learn a new language. In fact, you can do most everything you'd want to do with the Query Editor GUI, rather than writing code.

     

    However, if you want some more information on the SQL approach:

    In that SQL code, "Employee" is the table name, and "ID/Name/Date" are all column names. It's a very small SQL statement that basically says:

    From the "Employee" table, show me all of the data from the columns "ID", "Name", and "Date".

     

    For more information on how to write some basic SQL, you can go here:

    https://docs.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql#examples