Super teaching 😍😍😍 dhripthi aa iruku.. I'm going to follow this channel for all SQL and plsql syllabus
@learncodetodaytamil2 жыл бұрын
Thank you.
@ivanesm19842 жыл бұрын
Very useful bro
@Aswath-uf2dy Жыл бұрын
Excellent bro thank you so much
@learncodetodaytamil Жыл бұрын
Thanks bro...
@ganeshv2123 Жыл бұрын
Thank sir for clear explanation about sequence.. I have once query - Does it required to give max values in sequence? Is there any option where i can give unlimited values for the tables having millions of records?
@learncodetodaytamil Жыл бұрын
Maxvalue is optional. If u want to limit the values to a certain value, use maxvalue. otherwise leave it. For ur case ommit the maxvalue in sequence
@ganeshv2123 Жыл бұрын
@@learncodetodaytamil Thanks for your prompt response
@kaththikarthi8782 жыл бұрын
Super sir...
@learncodetodaytamil2 жыл бұрын
Thank u !!
@barakathnoohu64092 жыл бұрын
Thank u sooooo much
@learncodetodaytamil2 жыл бұрын
Most welcome 😊
@harinipunniakotti2181 Жыл бұрын
Bcz of u only i have learned sql sir. Sir will u plz take excel from beginning level To excellent level plz sir.
@learncodetodaytamil Жыл бұрын
This channel is for learning Oracle technology.... but ,will try to cover....
@Akashsteve-js4eo8 ай бұрын
bro mysql video poodunga
@learncodetodaytamil8 ай бұрын
Bro all concepts are same... Try to learn concepts.
@tejakj693310 ай бұрын
I need your all PPT bro
@sudheek-xy6nu2 жыл бұрын
How to check available sequence in db?
@learncodetodaytamil2 жыл бұрын
U can use user_sequences or all_sequences
@santhoshs5850 Жыл бұрын
Do I need to mention "seq.nextval" (e.g for id column)each time while we insert the record? For example I'm going to insert 10 record, So do I need to mention seq.nextaval in each of the insert query? (or) One time is enough for the first record then it will generate automatically for the next records?
@learncodetodaytamil Жыл бұрын
For each time we have to mention... If not create a dml trigger for that table. Inside that u can mention the sequence... This way u don't need to mention each time while inserting the record...
@mohammedimthiyas9001 Жыл бұрын
synonym topic pls
@jagubarjagubar4622 жыл бұрын
Prgm a order a sollunga
@pksivaguru Жыл бұрын
you said its not possible to change start value, then how we can change minimum value?
@learncodetodaytamil Жыл бұрын
To change min value Alter sequence sequence_name Minvalue 2 .... ..... ; Note: once u have altered the min value it is used for next cycle only.
@AjithKumar-fu6rg Жыл бұрын
❤️🩹✨
@princy_raj4 ай бұрын
Anna Oracle interview face pana neenga soli kudutha videos eh podhuma
@learncodetodaytamil4 ай бұрын
Yes it's enough...👍
@jagubarjagubar4622 жыл бұрын
Ithoda order crt a
@manandan9853 Жыл бұрын
bro.. ORDER|NOORDER BRO? EXPLANATION BRO?
@learncodetodaytamil Жыл бұрын
Order means it will provide values in order(eg.1,2,3,4,5) Noorder means it will provide random value or random order (eg. 1,5,3,4,2)