Download Article
Download Article
If you work with databases frequently, you might have to occasionally write basic SQL queries to retrieve and manipulate the data you need. The best way to write SQL commands is in SQL Server Management Studio. Luckily, it's pretty easy, even if you're a beginner to writing SQL. We'll show you some basic commands, like the SELECT statement, INSERT statement, and more!
1) SELECT - This command is used to retrieve information from a table
2) INSERT - This command is used to add information to a table
3) UPDATE - This command is used to modify information to a table
4) DELETE - This command is used to remove information from a table
Steps
-
Click on Start --> All Programs --> Microsoft SQL Server (2005/2008) --> SQL Server Management Studio
-
Next Login with your credentials to the ServerAdvertisement
-
Now right click on the Northwind Database and choose New Query
-
In the new Query Window, enter the following command for SELECT
-
This is the syntax for SELECT - SELECT * FROM Employees
-
This is the syntax for INSERT -
INSERT INTO Employees VALUES('col1', 'col2') - Replace col1 and col2 with actual Values as shown below
INSERT INTO Employees values('Anil','anil@company.com')
This inserts a single row into the table.
In the even you wish to enter multiple rows at one go, you see the following command
INSERT INTO Employees values('Anna','anna@company.com'), INSERT INTO Employees values('Krystel','krystel@company.com'), INSERT INTO Employees values('Lines','lines@company.com'). The key difference here is that every value is appended by a comma
Advertisement
7
{"smallUrl":"https:\/\/www.wikihow.com\/images\/thumb\/a\/a1\/Write-Basic-Sql-Statements-in-Sql-Server-Step-7.jpg\/v4-460px-Write-Basic-Sql-Statements-in-Sql-Server-Step-7.jpg","bigUrl":"\/images\/thumb\/a\/a1\/Write-Basic-Sql-Statements-in-Sql-Server-Step-7.jpg\/aid933154-v4-728px-Write-Basic-Sql-Statements-in-Sql-Server-Step-7.jpg","smallWidth":460,"smallHeight":348,"bigWidth":728,"bigHeight":551,"licensing":"<div class=\"mw-parser-output\"><p>License: <a target=\"_blank\" rel=\"nofollow noreferrer noopener\" class=\"external text\" href=\"https:\/\/en.wikipedia.org\/wiki\/Fair_use\">Fair Use<\/a> (screenshot)<br>\n<\/p><\/div>"}
Tips
- Use the SQL Server Management Studio Code Snippets as hints to better your SQL Writing Skills
- As you become more comfortable writing Queries, Use the SQL Query Designer to build sophisticated queries
Warnings
- Never use DELETE without a WHERE Clause in your Statements to prevent accidental deletion of rows
- Same rule applies to UPDATE and INSERT as well
- Always use Caution when working with the DELETE command.
Community Q&A
Search
-
QuestionCan you explain the steps from creation of a database to the retrieval of data from it?Community AnswerDatabase management is more complex than a single question and answer can explain. There are many free tutorials online. Start by googling "SQL tutorial" and see what you find.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement
About This Article
Thanks to all authors for creating a page that has been read 119,238 times.
Advertisement