GithubHelp home page GithubHelp logo

sql-notes's Introduction

SQL-Essentials

What is SQL?

  • SQL stands for Structured Query Language.
  • SQL is a standard language for storing, manipulating and retrieving data in databases.
  • SQL is NOT case sensitive, so SELECT is the same as select.

What can SQL do?

  • Execute queries against a database
  • Retrieve data from a database
  • Insert records in a database
  • Update records in a database
  • Delete records from a database
  • Create new databases
  • Create new tables in a database
  • Create stored procedures in a database
  • Create views in a database
  • Set permissions on tables, procedures, and views

Requirements

We will be using Northwind database to practice our SQL skills through SQLite. The Northwind database consists of 12 tables with a lot of fields (column) and hundreds of records (rows) that we can use for query.

!pip install ipython-sql

ipython-sql introduces a %sql(for single-line command) or %%sql(for multiple-line commands) magic to our Jupyter notebook allowing us to connect to a database, using SQLAlchemy connect strings, then issue SQL commands within iPython or iPython Notebook.

Load Extension

%load_ext sql

Connect to Database

%sql sqlite:///northwind.db

Summary of the Database




Work in progress... ๐Ÿ™‚

sql-notes's People

Contributors

shafiqdeb avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.