Это видео недоступно.
Сожалеем об этом.

Create Table in SQL (Hindi) | CREATE TABLE Practical execution | ORACLE CREATE TABLE | GB TECHNO

Поделиться
HTML-код
  • Опубликовано: 7 дек 2021
  • Hello Friends,
    In this video we will learn to create table in SQL using syntax and practical example in very simple language.
    Please Subscribe to GB Techno channel to view more videos and for notifications
    / gbtechno
    1. Crack C++ Apti / MCQ Exam all videos Playlist link
    • Session 1: Crack C++ a...
    2. Crack C technical Interview playlist link
    • Crack C technical inte...
    3. Crack C++ / JAVA technical Interview playlist link
    • Crack C++, JAVA techni...
    4. Crack C++ MCQ / Aptitude playlist link
    • C++ MCQs / C++ Aptitud...
    5. Operating System(Hindi)
    • Operating System(Hindi...
    6. 'C' Programming tutorial
    • 'C' Programming Tutori...
    Do not forget to follow us
    Instagram:
    / ganesh_bhondve_official
    For more videos and articles visit:
    / gbtechno
    Please support us by (its free)
    SUBSCRIBE | SHARE | LIKE KARE
    Thank you so much for all your love, blessings and support.
    ----PROF. GANESH BHONDVE----

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

  • @nagnathlondhe2885
    @nagnathlondhe2885 2 года назад +3

    Keep it up sir bahot simple language me smjate ho ty

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

      Thank you so much

  • @raut_roy_56
    @raut_roy_56 Год назад +3

    Youe language is easy to understand
    Nice sir 🙂👍👌

  • @justlearningcinema1476
    @justlearningcinema1476 2 года назад +2

    Thank you sir kaafi achhe se samjh me aa gya

  • @vishalsalape1144
    @vishalsalape1144 Год назад +2

    owesome sir

    • @GBTechno
      @GBTechno  Год назад

      Thank you so much Vishal

  • @vipinjadon7163
    @vipinjadon7163 2 года назад +2

    Great sir 👏 👍 👌

  • @ishatilekar9017
    @ishatilekar9017 2 года назад +2

    Thank you so much ganesh sir😌

  • @omkartwo1749
    @omkartwo1749 2 года назад +2

    Awesome video sir 😀😀

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

      Thank you so much Omkar

  • @jyotikaduskarshinde.5891
    @jyotikaduskarshinde.5891 2 года назад +2

    Thank you sir.

  • @sarthakpasalkar6738
    @sarthakpasalkar6738 2 года назад +3

    Sir database banavte wakt ka password agar bhul gaye ho toh kya kare?

    • @GBTechno
      @GBTechno  2 года назад +1

      We can solve above problem using following steps
      Open your SQL command line and type the following:
      Step1:
      SQL> connect / as database_name
      Here database name is the name of database to connect.
      Once we connected,we can enter the following query to get details of username and password:
      Step2:
      SQL> SELECT username,password FROM dba_users;
      Using above we will get list of users,but passwords would not be visible.But we can identify the particular username and then change the password for that user. For changing the password,use the following query:
      Step3:
      SQL> ALTER user username identified by password;
      Here username is the name of user whose password we want to change and password is the new password.