SQL Tutorial for Beginners | Oracle Live SQL | SQL Worksheet 1

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

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

  • @ckellz93
    @ckellz93 2 года назад +5

    This video just helped me deploy my first sql chart! Thank you, I’m more confident now

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

      This means a lot me, thanks for the comment. I'll be making more videos like this

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

    It helped me a lot. Thank you so much

  • @manikantareddynagella2441
    @manikantareddynagella2441 4 года назад

    Till now I am unable to add tables in SQL sheet ..but now I am to able to add ..
    Thank you so much bro

  • @vaishnavism5110
    @vaishnavism5110 4 года назад +3

    this was very helpful,thank you :)

  • @manikantareddynagella2441
    @manikantareddynagella2441 4 года назад +1

    Soo much thankful to you bro..

  • @rishitiwari9974
    @rishitiwari9974 4 года назад +1

    this video really helped man!!!

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

    Thank u soo much it helped me alot

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

    This video really helped. thanks

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

    Thanks so much.

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

    Useful ✨

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

    Thank youuuuuuuuuuuuu ❤️❤️❤️❤️

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

    Amazing!

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

    Thankyou

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

    Thank you this is really good. 🙂

  • @13_abhishekgaikwad2
    @13_abhishekgaikwad2 2 года назад

    Good great mate keep it up 👌🏻

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

    A big thanks brother, it's really help me
    Thanks again.

  • @leeeric6292
    @leeeric6292 11 месяцев назад +1

    I follow, but fail. It shows "ORA-00984: column not allowed here".
    By the way, can I run pl/sql in the worksheet ?

    • @uwu.shrirang
      @uwu.shrirang 8 дней назад

      YES SAME DID YOU FIND ANY SOLUTION?
      \

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

    this Tutorial very helpfull for me ...thank you so much😊... I want to more tutorial for this type......😇

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

    Sir please tell the solution of this question. when I insert one line this same line is repeated again and again in output

  • @noheedalam8573
    @noheedalam8573 4 года назад

    helpful vedio .

  • @user-ii8jr3dq6v
    @user-ii8jr3dq6v 2 года назад

    If i add alter table then i put select * from students the schedule appear with no data just name of column what is the problem?

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

    i am unable to create a database in the oracle live SQL .....how should i create it ?

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

      Same ...did u find anything and created again

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

    Plz upload oracle live videos for joins and other sub topics, really understood everything from your videos 😃😃

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

      I'd do my best to make them asap, I'm glad the video helped

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

    sir , each time run the code again and again the rows are creating it can also visible in your code what is the solution for it sir

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

      Highlight the new code you inputted, then run it.
      Or add DROP TABLE IF EXISTS to your script
      DROP TABLE IF EXISTS table_name;
      CREATE TABLE table_name ( ... );

  • @gappun9
    @gappun9 6 лет назад +1

    Hii !! How can i view the structure of the table ?
    Regards
    Deepanshu Arora

    • @divishtt3091
      @divishtt3091 5 лет назад

      Deepansh Arora Do you how how to view the structure of table cuz desc and describe didnt work

    • @divishtt3091
      @divishtt3091 5 лет назад

      Deepansh Arora Do you how how to view the structure of table cuz desc and describe didnt work

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

      CREATE TABLE customers
      ( customer_id number(10) NOT NULL,
      customer_name varchar2(50) NOT NULL,
      city varchar2(50)
      );
      select * from customers;
      select *
      from all_tab_cols
      where 1=1
      and lower(table_name) =lower('customers');

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

      or by
      desc table_name ;
      eg: desc customers;

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

    Hmmm

  • @usfeed4902
    @usfeed4902 4 года назад

    Please How to describe a table in Oracle Live SQL ??

    • @pooja_998
      @pooja_998 4 года назад +1

      by going in schema option you can view the structure of tha table

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

      DESC tablename or DESCRIBE tablename

  • @carlosochavez2289
    @carlosochavez2289 4 года назад

    What if you want to add timestamps can you help with my program to put a timestamps?

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

      SELECT TIMESTAMP(“yyyy-mm-dd”, “hh:mm:ss”);

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

    ORA-00907: missing right parenthesis .

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

      Same dude ....did u create again coz I can't

  • @user-vi4xv3pp1r
    @user-vi4xv3pp1r 3 года назад

    Please can you help me

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

      I just saw your comment. How can I help you?

  • @dipeshrajoria5599
    @dipeshrajoria5599 4 года назад +1

    LPU wale kitne hai... Like kre...

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

    Are u an Indian??

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

    Fake accent

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

    David can you share your email please.