1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

Merge pull request #3698 from apooravc/add-sql-resource

[sql/en] Added a resource (tutorial)
This commit is contained in:
Divay Prakash
2020-01-11 14:26:36 +05:30
committed by GitHub

View File

@@ -103,3 +103,8 @@ DELETE FROM tablename1;
-- Remove the entire tablename1 table. -- Remove the entire tablename1 table.
DROP TABLE tablename1; DROP TABLE tablename1;
``` ```
## Further Reading
* [Codecademy - SQL](https://www.codecademy.com/learn/learn-sql) A good introduction to SQL in a "learn by doing it" format.
* [Database System Concepts](https://www.db-book.com) book's Chapter 3 - Introduction to SQL has an in depth explanation of SQL concepts.