DP-900 SQL Statements in Azure Data Studio
SQL Statements in Azure Data Studio
Step 1 : Go to the Azure portal.
Step 2 : Open Azure Data Studio.
Step 3 : Connect your database, and you will see all the tables inside that database in Azure Data Studio.
Step 4 : Go to the new query tab and write your query.
Remember, you need to write the schema name and table name in the query to access the data
* - To retrieve all records from the table.
column names after select - To select specific columns from the table
OrderBy - To set the data in a specific order.
- Sorts the rows based on the value specified in column.
Where - To retrieve the specific row with specific data.
- Always write the order by clause after the where clause.
- Always write a string in ' ', not in " ".
Comments
Post a Comment