Hi @Jonas Levesen Thanks for posting your question in the Microsoft Q&A forum.
If I understand correctly you are looking for guidance on how to set up a SQL query with the "SELECT, WHERE, FROM" structure.
The SQL query structure you are referring to is called a SELECT statement. It is used to retrieve data from a database table you can follow the below document
https://learn.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql?view=sql-server-ver15
SELECT column1, column2, ... FROM table_name WHERE condition;
Replace "column1, column2, ..." with the names of the columns you want to retrieve data from. Replace "table_name" with the name of the table you want to retrieve
Let me know if you need any additional details
Regards
Geetha