MySQL: How to INSERT rows into a TABLE

Поділитися
Вставка
  • Опубліковано 10 жов 2022
  • #mysql
    -- EXAMPLE 1 --
    INSERT INTO employees
    VALUES (1, "Eugene", "Krabs", 25.50, "2023-01-02");
    SELECT * FROM employees;
    -- EXAMPLE 2 --
    INSERT INTO employees
    VALUES (2, "Squidward", "Tentacles", 15.00, "2023-01-03"),
    (3, "Spongebob", "Squarepants", 12.50, "2023-01-04"),
    (4, "Patrick", "Star", 12.50, "2023-01-05"),
    (5, "Sandy", "Cheeks", 17.25, "2023-01-06");
    SELECT * FROM employees;
    -- EXAMPLE 3 --
    INSERT INTO employees (employee_id, first_name, last_name)
    VALUES (6, "Sheldon", "Plankton");
    SELECT * FROM employees;

КОМЕНТАРІ • 48

  • @BroCodez
    @BroCodez  Рік тому +24

    -- EXAMPLE 1 --
    INSERT INTO employees
    VALUES (1, "Eugene", "Krabs", 25.50, "2023-01-02");
    SELECT * FROM employees;
    -- EXAMPLE 2 --
    INSERT INTO employees
    VALUES (2, "Squidward", "Tentacles", 15.00, "2023-01-03"),
    (3, "Spongebob", "Squarepants", 12.50, "2023-01-04"),
    (4, "Patrick", "Star", 12.50, "2023-01-05"),
    (5, "Sandy", "Cheeks", 17.25, "2023-01-06");
    SELECT * FROM employees;
    -- EXAMPLE 3 --
    INSERT INTO employees (employee_id, first_name, last_name)
    VALUES (6, "Sheldon", "Plankton");
    SELECT * FROM employees;

  • @mercenary5463
    @mercenary5463 6 місяців тому +12

    Bro called her sandy cheeks and thought we wouldn’t notice 😂

  • @blessing2457
    @blessing2457 9 місяців тому +2

    Thank you! This was helpful 👏🏽

  • @j.kelvinfallah
    @j.kelvinfallah 3 місяці тому

    You killed it bro. Thanks

  • @ayskvv
    @ayskvv Рік тому +4

    bro has helped me more than my teachers ever could :skull:

  • @Kabila.Shabab-ok9fl
    @Kabila.Shabab-ok9fl 4 місяці тому +1

    Bro you made me cry, you're too good to make such a thought thing into an easy thing. LoL bro Lol

  • @dinushachathuranga7657
    @dinushachathuranga7657 11 місяців тому

    Thanks for the video❤

  • @ugyenofficial
    @ugyenofficial Рік тому

    Thank you so much Bro❤❤

  • @user-wt4bb8fw5z
    @user-wt4bb8fw5z 2 місяці тому

    Bro is a goat in this field, keep it up
    🇿🇼🇿🇼🇿🇼

  • @murodjonsadullaev1727
    @murodjonsadullaev1727 Рік тому +10

    thank you bro for sharing with such precious knowledges. God bless you man

  • @younessj4923
    @younessj4923 Рік тому

    Thank you so much Broo

  • @user-je1wn9um3i
    @user-je1wn9um3i 7 місяців тому

    you are the best thank you so much

  • @bichoron3603
    @bichoron3603 Місяць тому

    Amazing work Bro. Please keep it up & give us more tutorials about SQL learning & practical projects. Waiting for your replay

  • @andredubbs4854
    @andredubbs4854 Рік тому

    cool video bro!

  • @Person_Alive
    @Person_Alive 9 місяців тому

    Why and how, only 31 comments bro you deserve a lot more

  • @kunalchauhan5294
    @kunalchauhan5294 Рік тому +11

    1 comment Felling lucky with every other bro

  • @adedamolayusuf7018
    @adedamolayusuf7018 Рік тому +1

    trying to learn python although, your videos help a lot, I get bored after some time of learning like I need the thing I know to use for real-life problems what can I do

  • @lofwyr5063
    @lofwyr5063 5 місяців тому

    Is the fact that you are getting column names on the empty set a feature of the sql workbench? Cause all I get, on an empty set, is "empty set".
    I'd have to use "show columns" for that.

  • @mdomine245
    @mdomine245 8 місяців тому

    is there commit or rollback command like oracle?

  • @gamePlays9699
    @gamePlays9699 Рік тому +1

    Eugene?

  • @short-shots
    @short-shots Рік тому

    BRO CHAD GANG GANG BOOM

  • @luly6465
    @luly6465 6 місяців тому

    How can I delete a duplicate row?
    When I follow the query example and it says: values ( and write I write the information of the employee) and then I run the query and check the table the row repeats🧐

  • @On7thSky
    @On7thSky День тому

    I have a question, so how would I update the row once I have the information for the missing columns?

  • @kennethfortugaleza5073
    @kennethfortugaleza5073 Місяць тому

    My man how do I add an image to a table? and if so anyway to view it?

  • @suryad3092
    @suryad3092 12 днів тому

    in last how to add the records in remaining two columns

  • @tboleon
    @tboleon Рік тому +3

    question, whats mysql and what is its purpose?

    • @BroCodez
      @BroCodez  Рік тому +3

      It's a language to query a database

  • @KrAyOnS1
    @KrAyOnS1 Рік тому

    Question. You set the hourly pay to DECIMAL. What if it was a whole number woulf it matter?

  • @M4LAZE
    @M4LAZE Рік тому

    how to remove dupicate rows

  • @essammakia3475
    @essammakia3475 Рік тому +1

    im getting this error
    17:57:10 INSERT INTO employees VALUES (1, "Eugene", "Krabs", 25, "2023-01-02") Error Code: 1136. Column count doesn't match value count at row 1 0.000 sec
    hope you can help me !

    • @brandonh9142
      @brandonh9142 Рік тому +1

      my problem was i left the email section in check to make sure you have the correct amount of columns use code:
      alter table employees
      drop column email;
      to remove a column.
      then add the code again should work.

    • @essammakia3475
      @essammakia3475 Рік тому

      @@brandonh9142 thanks 🙏 I will give it a try

    • @KrAyOnS1
      @KrAyOnS1 Рік тому

      @@essammakia3475 Did it work? Having same issue

    • @essammakia3475
      @essammakia3475 Рік тому

      @@KrAyOnS1 no it did not work for me sadly

  • @sherzod7788
    @sherzod7788 11 місяців тому +2

    hey bro code. at 5:09 can we just insert null values instead of telling mysql which columns we will insert?

    • @markocoly4960
      @markocoly4960 3 місяці тому

      hey did you find the solution i have the same problem

  • @ReeshavGhosh200
    @ReeshavGhosh200 Рік тому

    How to make ai for games in html using javascript

  • @GaBeKool
    @GaBeKool Рік тому

    Something doesnt work for me. When i try to print the table (SELECT * FROM employees) my whole program crashes. Whats wrong there? Am i the only one having this issue?

  • @mulumbacephas5036
    @mulumbacephas5036 Рік тому

    A random comment to hack youtube algorithm

  • @Gametimewithsurya
    @Gametimewithsurya 15 днів тому

    Bro is Bro

  • @fyrukmcoo100
    @fyrukmcoo100 Рік тому

    :((

  • @ronf6900
    @ronf6900 Рік тому +2

    NO GO TUTORIAL @brocode WTF