Companies Home Search Profile

SQLite for beginners

Focused View

Bluelime Learning Solutions

4:04:53

8 View
  • 1 - Introduction.mp4
    02:08
  • 2 - What is SQLite.mp4
    07:31
  • 3 - Download and Install SQLite.mp4
    06:40
  • 4 - What is SQLite Studio.mp4
    05:50
  • 5 - Attaching Sample Database to SQLite.mp4
    07:16
  • 5 - chinook.zip
  • 5 - dbschema.zip
  • 6 - How to connect to SQLite Database.mp4
    07:26
  • 7 - Database Concepts.mp4
    03:51
  • 8 - What is sqlite3 tool.mp4
    03:10
  • 9 - Some commonly used sqlite3 commands.mp4
    10:31
  • 10 - SQLite Dump command.mp4
    08:06
  • 11 - SQLite SELECT statement.mp4
    05:37
  • 12 - Querying data from all columns in a table.mp4
    04:53
  • 13 - Querying data from specific columns in a table.mp4
    05:17
  • 14 - Sorting data using ORDER BY clause.mp4
    08:21
  • 15 - Removing duplicate records using DISTINCT clause.mp4
    05:29
  • 16 - Filtering data with WHERE clause.mp4
    06:59
  • 17 - Identifying NULL values.mp4
    04:30
  • 18 - SQLite Data Types.mp4
    07:23
  • 19 - SQLite ALiases.mp4
    06:03
  • 20 - SQLite Constraints.mp4
    04:21
  • 21 - SQLite Create Table Statement Part 1.mp4
    06:46
  • 22 - SQLite Create Table Statement Part 2.mp4
    07:03
  • 23 - SQLite INSERT INTO Table Statement.mp4
    07:43
  • 24 - SQLite UPDATE Statement.mp4
    03:47
  • 25 - SQLite DELETE Statement.mp4
    02:41
  • 26 - SQLite DROP Table Statement.mp4
    01:37
  • 27 - SQLite BETWEEN Operator.mp4
    04:28
  • 28 - SQLite IN Operator.mp4
    04:53
  • 29 - SQLite LIKE operator.mp4
    06:51
  • 30 - SQLite GLOB Operator.mp4
    05:38
  • 31 - SQLite LIMIT clause.mp4
    05:18
  • 32 - What is a subquery.mp4
    02:52
  • 33 - Building a subquery in a WHERE clause.mp4
    03:37
  • 34 - Building a subquery in a WHERE clause using IN operator.mp4
    02:43
  • 35 - Building a subquery in FROM clause.mp4
    02:54
  • 36 - SQLite LEFT Join.mp4
    05:51
  • 37 - SQLite INNER Join.mp4
    05:43
  • 38 - SQLite CROSS Join.mp4
    05:20
  • 39 - SQLite SELF Join.mp4
    07:04
  • 40 - Introduction to SQLite Aggregate Functions.mp4
    03:30
  • 41 - SQLite AVG Function.mp4
    03:32
  • 42 - SQLite COUNT Function.mp4
    04:29
  • 43 - SQLIte SUM Function.mp4
    02:25
  • 44 - SQLite MAX Function.mp4
    01:08
  • 45 - SQLite MIN Function.mp4
    02:53
  • 46 - SQLite GROUP CONCAT Function.mp4
    01:45
  • 47 - SQLite GROUP BY Clause.mp4
    04:17
  • 48 - SQLite HAVING Clause.mp4
    06:43
  • 49 - Thank You.html
  • Description


    Practical Hands -on Introduction to SQLite

    What You'll Learn?


    • Learn how to Download and Install SQLite
    • Learn how to attach a sample database to SQLite
    • How to connect to SQLite Database
    • Learn how to execute Some commonly used sqlite3 commands
    • How to backup entire database and tables using SQLite Dump command
    • Learn to fetch data from database using SQLite SELECT statement
    • Learn to query and fetch all data from a database table
    • Learn to query and fetch specific data from a database table
    • Learn to sort data returned from a database using ORDER BY clause
    • Learn to filter data returned from a database using WHERE clause
    • Learn how to remove duplicate records using SQLITE DISTINCT
    • Learn how to identify NULL values in a database table
    • Learn about various SQLite Data Types
    • Learn how SQLite Constraints works
    • Learn how to create new table
    • Learn how to add new records into a table
    • Learn how to Update existing records inside a database table
    • Learn how to Delete existing records in a database
    • Learn how to Drop a table
    • Learn how to use various SQLite operators to manipulate data
    • Learn how to extract data from multiple tables using table joins
    • Learn how to use Aliases
    • Learn how to use various types of Aggregate functions to perform calculations on records in a database table
    • Learn how to group data with GROUP BY clause
    • Learn how to Filter grouped data using HAVING clause

    Who is this for?


  • Beginner SQL Developers
  • Beginner Data Analyst
  • Beginners to SQLite
  • Beginner DBA's ( Database Administrators)
  • What You Need to Know?


  • Basic knowledge of a computer
  • Basic internet navigation skills
  • Basic understanding of database concepts will help but not mandatory
  • Basic working knowledge of Standard SQL will help but not mandatory
  • More details


    Description

    This course gives you a brief overview of SQLite and the SQLite’s distinctive features that make SQLite  one of the  most widely deployed SQL database engine.

    SQLite is a software library that provides a relational database management system. The lite in SQLite means light weight in terms of setup, database administration, and required resource.  SQLite does NOT require a server to run.

    Because of the serverless architecture, you don’t need to “install” SQLite before using it. There is no server process that needs to be configured, started, and stopped. SQLite uses dynamic types for tables. It means you can store any value in any column, regardless of the data type.

    SQLite is self-contained means it requires minimal support from the operating system or external library. This makes SQLite usable in any environments especially in embedded devices like iPhones, Android phones, game consoles, handheld media players, etc.

    SQLite is capable of creating in-memory databases which are very fast to work with.

    SQLite database is integrated with the application that accesses the database. The applications interact with the SQLite database read and write directly from the database files stored on disk.


    What You will learn includes:


    • Database Concepts

    • Download and Install SQLite

    • What is SQLite Studio

    • Attaching Sample Database to SQLite

    • How to connect to SQLite Database

    • Some Basic SQLite Commands

    • Some commonly used sqlite3 commands

    • SQLite Dump command

    • What is sqlite3 tool

    • SQLite SELECT statement

    • Querying data from all columns in a table

    • Querying data from specific columns in a table

    • Sorting data using ORDER BY clause

    • Removing duplicate records using DISTINCT clause

    • Filtering data with WHERE clause

    • Identifying NULL values

    • SQLite Data Types

    • SQLite Constraints

    • SQLite Create Table Statement

    • SQLite INSERT INTO  Table Statement

    • SQLite UPDATE Statement

    • SQLite DELETE Statement

    • SQLite DROP Table Statement

    • SQLite BETWEEN Operator

    • SQLite IN Operator

    • SQLite LIMIT clause

    • SQLite LIKE operator

    • SQLite GLOB Operator

    • SQLite Subquery

    • Building a subquery in a WHERE clause

    • Building a subquery in a WHERE clause using IN operator

    • Building a subquery in FROM clause

    • SQLITE Table Joins

    • SQLite LEFT Join

    • SQLite INNER Join

    • SQLite CROSS Join

    • SQLite SELF Join

    • SQLite ALiases

    • SQLite Aggregate Functions

    • Introduction to SQLite Aggregate Functions

    • SQLite AVG Function

    • SQLite COUNT Function

    • SQLIte SUM Function

    • SQLite MAX Function

    • SQLite MIN Function

    • SQLite GROUP_ CONCAT Function

    • SQLite GROUP BY Clause

    • SQLite HAVING Clause


























    Who this course is for:

    • Beginner SQL Developers
    • Beginner Data Analyst
    • Beginners to SQLite
    • Beginner DBA's ( Database Administrators)

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category
    Bluelime Learning Solutions
    Bluelime Learning Solutions
    Instructor's Courses
    Bluelime is UK based and creates quality easy to understand  eLearning  solutions .All our courses are 100% video based. We teach hands –on- examples  that teach real life skills .Bluelime has engaged in various types of projects for fortune 500 companies and understands what is required to prepare students with the relevant skills they need.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 48
    • duration 4:04:53
    • English subtitles has
    • Release Date 2024/04/29

    Courses related to SQLite

    Subtitle
    Doctrine ORM (with MySQL and SQLite)
    SkillShareDoctrine ORM (with MySQL and SQLite)
    1:21:17
    English subtitles
    10/03/2023
    High Performance SQLite
    UdemyHigh Performance SQLite
    6:32:17
    11/04/2024