So You Want to Learn SQL? A Short In-Depth TutorialsteemCreated with Sketch.

in #programming7 years ago

SQL stands for Structured Query Language. It's mostly used to query databases. You can do things like stored procedures, which are indeed programmed subroutines at the database level, but 80% or so of the time you just want simple CRUD (Create/Read/Update/Delete a record) operations - so that's what I'll jot down here.

I wouldn't call SQL a programming language per se - it is fully featured for use as a programming language in some implementations (I'm not sure if MS SQL Server is one of them or not), but that's just not what it's most commonly used for.
The language used in Microsoft SQL Server is specifically called T-SQL, short for Transact-SQL.

To start off, you need a database. If you want to create a Microsoft SQL database, check out this short and easy tutorial over at WikiHow.

After you have the database, you need a table. You'll want to issue a CREATE TABLE statement. The top of that page shows the structure of the statement - don't let that intimidate you, you don't need most of those options to start out. Scroll down far enough and you'll see some simple (and some more complicated) examples. You can use one of those or craft one of your own.

I'll wait.
...

Done? Great, you've got a table now. Fantastic. We can start with those CRUD operations.

The first one, C (create), is an INSERT statement in the SQL language, examples here. You'll want to craft an INSERT statement that will work against your table. This means that if you created a table with three columns (let's say INT, DATE, and TEXT), you'll do:

INSERT INTO [tablename] (column1_name, column2_name, column3_name) VALUES (1, '2017-04-03 19:49', 'steem ian');

You can also do multiple rows in one statement - I will split it to multiple lines for readability:

INSERT INTO [tablename] (column1_name, column2_name, column3_name) VALUES
(1, '2017-04-03 19:49', 'steem ian'),
(2, '2016-08-16 20:25', 'text #2'),
(3, '2015-12-25 00:00', 'Christmas!');

If you know the exact table schema and want to insert to all columns at once (the previous syntax lets you do a subset of the columns and let the others just be the defaults, as defined in the CREATE TABLE statement), you can shorten it to this:

INSERT INTO [tablename] VALUES (1, '2017-04-03 19:49', 'steem ian');

That covers the basics of INSERT statements - you can check out the links for more.

Let's move on to the R, or "read". In SQL, that's a SELECT statement. In its most basic form, you can simply do:

SELECT * FROM [tablename];

This will pull all the columns and all the rows from the table. Usually, that's not what we want - we want to limit it to a specific row or a set rows matching a certain set of criteria. That's where the wonderful WHERE clause comes in:

SELECT * FROM [tablename] WHERE id = 47;
SELECT * FROM people WHERE first_name = 'Steem' AND birthdate = '1990-06-18';

You can get arbitrarily complex with the logic in the WHERE clause, and if your table(s) are keyed right, not run into any awful performance issues. Relational databases are awesome at querying.

In addition to limiting the rows, you can limit the columns as well. These are starting to look like a query you're more likely to see in the real world, in a well-architected application:

SELECT column1_name, column2_name FROM tablename WHERE column3_name = desired_value;
SELECT id FROM people WHERE first_name = 'Steem' AND birthdate = '1990-06-18';
SELECT first_name, last_name, birthdate FROM people WHERE id = 106;

You can also pull from multiple tables in a single query. This is called a join. I don't use T-SQL enough to know its join syntax, so I'm not going to cover it here, but you can read about it in this article - I only skimmed that, so hopefully it doesn't suck.

Now, we're onto the U, for update. In SQL this is actually an UPDATE statement. These follow the following syntax:

UPDATE [tablename] SET [column1_name] = column1_value, [column2_name] = column2_value WHERE [column3_name] = column3_value;
UPDATE people SET last_name = 'Maidenname-Marriedname' WHERE id = 46002;

That example might be what you'd issue if a woman you were tracking in your database got married and hyphenated.
Be careful, as you can update multiple rows at once, depending on your WHERE clause - it's often a good idea to do a SELECT * with your WHERE clause before executing an UPDATE with the same WHERE clause. You can even leave off the WHERE clause and update every row in the table:

UPDATE people SET last_name = 'Ian';

I've just set everybody's last names to Ian because I forgot my WHERE clause.

UPDATE statements can be complicated as well - they accept the exact same set of logic in the WHERE clause as a SELECT statement, and you can update multiple tables simultaneously (joins again), or update one table based on the values of another.

Finally, the D - for delete. In SQL, that's a DELETE statement. These, like SELECT/UPDATE statements, accept the same WHERE logic, including none at all. Like UPDATEs, it's a good idea to test your WHERE clause with a SELECT before executing a DELETE.

DELETE FROM [tablename] WHERE [where clause];
DELETE FROM people WHERE id = 16;
DELETE FROM people WHERE birth_date < '1988-01-01';

Also like SELECTs and UPDATEs, you can execute a DELETE against multiple tables - to delete rows from one or more tables, based on the contents of one or more other tables.

Now that we're all done with our table, we can get rid of it. Simply DROP TABLE:

DROP TABLE people;

This has been a very quick primer on T-SQL and SQL in general. If you want to do actual programming in T-SQL and not just use it to manage your data records stored in an application written in a different language (like VB), you'll want to check out the CREATE PROCEDURE statement as a starting point.

Hopefully, I could help you with this little tutorial! - @ashi2k

Sort:  

Great post for complete beginner::)

Great explanation! I teach a course about MySQL, and I love to see any SQL related post here on Steemit, but most of all tutorials like this one. I'd love to read more about managing relations and normalization. Keep it up. :)

Oh wow! Thank you very much. :) I did not get a notification, that you commented, so sorry for being late.

I'm thinking about running a small programming tutorial series on Steem, but I think you can bring more to the table than me. :)

Cheers,
@ashi2k

Coin Marketplace

STEEM 0.15
TRX 0.15
JST 0.028
BTC 54034.48
ETH 2262.26
USDT 1.00
SBD 2.31