MySQL Database Tutorial - 31 - ALTER / DROP / RENAME TABLE

Поделиться
HTML-код
  • Опубликовано: 6 окт 2024

Комментарии • 40

  • @Mobliz
    @Mobliz 12 лет назад +1

    There's just something about Bucky's videos that make watching an advertisent so much less frustrating then normal. Oh, I think I know what it is... I actually don't mind Bucky earning some money off me! Thanks for all the great tuts you do!!!

  • @Claymore2408
    @Claymore2408 11 лет назад +11

    Next 10 tutorials? All I see are 2 more! haha :D

  • @Novica89
    @Novica89 12 лет назад +1

    You will need to learn some php too ! :) Once you create the form with HTML, you use PHP to catch the data user has typed in the form fields and then call the connection to your existing database. After that, you just use the insert statements you've seen in Buckies previouse tutorials to insert that data into your database.

  • @ChrisPTY507
    @ChrisPTY507 11 лет назад +1

    I felt really happy when you said that we were an intermediate level MYSQL user,yay!!!! :)

  • @emmajunruchen1753
    @emmajunruchen1753 10 лет назад +13

    did Bucky say 10 more tutorials? I only see 33. :O

    • @umarkhay5772
      @umarkhay5772 9 лет назад +3

      yea heard that too .. where's the next 10 ?

  • @terryphillips6910
    @terryphillips6910 10 лет назад

    Thank you for the videos. You have taught me a huge amount in video 29 and 31.

  • @luisandressanchez9205
    @luisandressanchez9205 9 лет назад +7

    WE REAAAAALLY NEED THE OTHER 10 TUTORIALS... WHERE ARE THEM

  • @tangrway
    @tangrway 12 лет назад +1

    It's a short but informative, concise and efficient tutorial!
    BANG! BANG!
    BUCKY BANG!
    BANG! BANG!
    BANG! BANG!
    BUCKY BANG!
    BANG! BANG!

  • @uchuyle2080
    @uchuyle2080 7 лет назад

    we need that 10 tutorial bucky.
    Dont let me hang here

  • @johnlocke4695
    @johnlocke4695 5 лет назад +1

    @thenewboston Thank you mr Gregory Roberts

  • @obi1canooby
    @obi1canooby 12 лет назад

    great vids, could you please make a beginner tutorial to c# game programming? something like how to make a pong-like game or basic side scroller would be great :)

  • @Andrei-ds8qv
    @Andrei-ds8qv 7 лет назад

    Awsome tutoials man!!

  • @MrDivad006
    @MrDivad006 8 лет назад

    What other 10 tutorials? Bucky, finals are approaching, get your shit together.

  • @khishgeenaranbat
    @khishgeenaranbat 3 года назад

    this video is prefect thank you so much

  • @tazzytaze
    @tazzytaze 3 года назад

    Man miss Mr. Bucky Tutorials

  • @evgenikuzmov1606
    @evgenikuzmov1606 7 лет назад +1

    3:15 is space on your hosting limited?

  • @webdesignpr
    @webdesignpr 12 лет назад +1

    How many people noticed the voice change after the McD Shake?

  • @monicakiss882
    @monicakiss882 7 лет назад +1

    you can't add a column named "column"

  • @rw7799
    @rw7799 7 лет назад +1

    rename didnt work for me..i called a table 'table' ....so i had to do this:
    RENAME TABLE `table` TO `applicants` ;
    the back tick ` is located on the key next to the number '1'.. it is not ' ' ...that would be to easy wouldnt it...
    jeeez 40 minutes gone,

  • @trentertainment9949
    @trentertainment9949 8 лет назад

    thank you for teach and maked it.

  • @mohammedk.h.f3016
    @mohammedk.h.f3016 3 года назад

    Thank you

  • @grainneuimhaol
    @grainneuimhaol 11 лет назад

    wow thank you :)

  • @xound101
    @xound101 12 лет назад

    dear can you tell me how i can update or edit db via form please help me thanks i m new

  • @nipunimalsara1551
    @nipunimalsara1551 12 лет назад

    thank u

  • @thedynamictrickster5731
    @thedynamictrickster5731 3 года назад

    Bro this is giving error
    create table customers(
    id int unique auto_increment,
    name varchar(50),
    age int,
    primary key(id)
    );
    ALTER TABLE Customer RENAME COLUMN Address TO Addr;

    • @avicii2479
      @avicii2479 2 года назад

      What is unique on 2nd line

  • @Anttl462
    @Anttl462 11 лет назад

    Theres 2 more tutorials, not ten ):

  • @viralpennies83
    @viralpennies83 10 лет назад +1

    How do you make a backup/copy of a table?

    • @robertngovan2284
      @robertngovan2284 9 лет назад +1

      Click EXPORT and that is yout backup

    • @Aryan91191
      @Aryan91191 9 лет назад +4

      viralpennies83
      CREATE TABLE newtable LIKE oldtable;
      INSERT newtable SELECT * FROM oldtable;

    • @tatianak8428
      @tatianak8428 7 лет назад

      I get an error (#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'INSERT copyUsers SELECT * FROM allUsers' at line 2) when trying this

  • @jaycruzada5971
    @jaycruzada5971 7 лет назад

    wheres the 10 moreeeeeee

  • @SoeaOu
    @SoeaOu 11 лет назад

    they wouldnt be so awesome then ;)

  • @herp_derpingson
    @herp_derpingson 12 лет назад

    DUH!

  • @ajay000003
    @ajay000003 7 лет назад

    Why you lying bucky xD:

  • @achyldahl
    @achyldahl 11 лет назад

    xkcd #327 :D

  • @climaxcontoseroticos7682
    @climaxcontoseroticos7682 9 лет назад

    Just a little warning: if you rename your tables, you must remember to update your code so that it will correspond to the new table names.