Structured Query Language (Basics 1 video)

3

  • 23
  • 0
  • 0.324
  • Reply

  • Open in the desktop app ADD TO PLAYLIST

    gunu1

    Published on Dec 09, 2022
    About :

    This video is a tutorial on SQL basics where I talk on some basic concepts. This serves as a reference material for the post I made on SQL

    Code used:


    CREATE DATABASE Friend_list

    USE Friend_list;

    /** C R U D

    */

    CREATE TABLE friends( First_name VARCHAR(50), Last_name VARCHAR(50), Age INT, contact INT );

    SELECT * FROM friends

    INSERT INTO friends(First_name,Last_name,Age,contact) VALUES( 'Abdul Kahar', 'Gunu', 80, 0123456789 );

    INSERT INTO friends(First_name,Last_name,Age,contact) VALUES( 'Abdul Rahman', 'Kudus', 50, 1234567890 );

    SELECT First_name, Last_name FROM friends WHERE contact = 1234567890 SELECT Age FROM friends WHERE contact = 1234567890 SELECT Last_name AS [FIRST NAME],First_name AS [LAST NAME] FROM friends WHERE contact = 1234567890

    UPDATE friends SET Age = 12 WHERE contact = 123456789

    DELETE FROM friends WHERE contact = 1234567890

    Tags :

    programming sql database tutorial learn proofofbrain

    Woo! This creator can upvote comments using 3speak's stake today because they are a top performing creator! Leave a quality comment relating to their content and you could receive an upvote worth at least a dollar.

    Their limit for today is $0!
    Comments:
    Time until gunu1 can give away $0 to their commenters.
    0 Days 0 Hours 0 Minutes 0 Seconds
    Reply:

    To comment on this video please connect a HIVE account to your profile: Connect HIVE Account

    35:18
    11 views a year ago $
    12:30
    2 views 7 months ago $

    More Videos

    07:39
    2 views 5 months ago $
    00:11
    1 views 2 years ago $
    01:41
    4 views a year ago $
    19:23
    0 views 3 weeks ago $
    02:37
    0 views 2 years ago $
    02:42
    35 views 2 years ago $
    00:25
    1 views 2 years ago $