00:03 Understanding basic concepts of databases and database management systems 02:26 SQL is a query language for database operations 07:16 Case sensitivity and constraints in SQL 09:45 Foreign key linking and CRUD operations 14:42 Difference between Drop, Delete and Truncate in SQL 16:56 Understanding SQL commands and concepts 21:01 Using aggregate functions and joining tables in SQL 23:30 Understanding Inner Joins in SQL 27:51 Interest in Development Role 30:15 Teamwork is essential for success 34:37 Utilize online tutorials and organizational resources to learn quickly. 36:46 Effective communication and learning during the managerial and technical rounds. 41:15 Importance of technology interest and communication skills 43:19 Confidence and communication skills are crucial for interview performance. 47:15 Clear concepts in English for better communication Crafted by Pradeep Naagar
@Rockstar.91910 ай бұрын
Its good to have ppl like u on KZbin 😊
@IfNotMe10 ай бұрын
Thank you bro
@SanjaySanjay-rw6lr9 ай бұрын
Thank you
@India_Asks8 ай бұрын
❤ thanks
@brownerjerry1747 ай бұрын
Bro wrote crafted by his name as if he has written a world disrupting novel.
@SatyarthRanjan-lt1tz6 ай бұрын
because of this interview i got a chance to revise my sql concepts
@rajatrahangdale869Ай бұрын
But the table name is case sensitive
@yashpatil670626 күн бұрын
@@rajatrahangdale869nope wrong answer
@imranrmd15529 ай бұрын
21:49 select count(*) and select count(field_name) difference is select count(*) will count null values but count(fieldname) will not count null values that is difference
@nareshnani6088 ай бұрын
True not count null values with field count
@consoledoterror9716 ай бұрын
Thanks
@hrishikeshXXV6 ай бұрын
ustadi nhi dikhao
@rameshgoud29865 ай бұрын
Thank you man
@datalover12010 ай бұрын
Primary key is combined of unique key & not null that means we can't leave that column blank as well as that record will be unique
@muhammadaknan602310 ай бұрын
Primary key is minimal key which satisfied Entity integrity constraint
@babadeepa201110 ай бұрын
Beautiful interview and very confident participant
@KingJagguYT11 ай бұрын
Its a very good interview, very informative...
@ManuHere-fy5jv6 ай бұрын
This is Helpful For So Many people Thank You For Given your experience to us 🙏❤
@mohdshahzad885610 ай бұрын
Great. The way she decribed all the things. Her presence of mind and communication was great.
@TheRealSaviour2 ай бұрын
Database is not organisation of the structure😂,it is organised collection of data stored electronically
@seansanwhybaptisingmakesch19302 ай бұрын
what kind of horrible black dress by the candidate..
@musichd4youАй бұрын
Even there are many people who speak well in BPO or recruitment side 😅
@Tumharaabbu-xn6cdАй бұрын
Tere kom ko he toh appreciate toh karega 😂😂😂😂
@syedmajidahmed82929 ай бұрын
One of the best interview I have seen... She calmy answered all questions which such grace & confidence.... This is next level 💯 we all should master our communication skill it's extremely important..... Best of luck to her🎉 👑
@murlidhardubey92962 ай бұрын
but why she is in black tent
@Danish_khan1232 ай бұрын
@@murlidhardubey9296Mere muh se English he ni nikalti ideas bahut acche ate hai 😢😢 84% btech mai hai 6 sem tak,interview kiase nikaelga mere muh se English ni nikalti meri bahut khosis ki 😢😢
@mujibultanim15 күн бұрын
@@murlidhardubey9296 she had no problem with it then why are you bothering? what if we asked you about why you worship elephant, monkey, pig and 69+ crore others? what if we asked you about casteism, sati daha and other women treatments in your religion?
@mdammar10 ай бұрын
00:03 Understanding basic concepts of databases and database management systems 02:26 SQL is a query language for database operations 07:16 Case sensitivity and constraints in SQL 09:45 Foreign key linking and CRUD operations 14:42 Difference between Drop, Delete and Truncate in SQL 16:56 Understanding SQL commands and concepts 21:01 Using aggregate functions and joining tables in SQL 23:30 Understanding Inner Joins in SQL 27:51 Interest in Development Role 30:15 Teamwork is essential for success 34:37 Utilize online tutorials and organizational resources to learn quickly. 36:46 Effective communication and learning during the managerial and technical rounds. 41:15 Importance of technology interest and communication skills 43:19 Confidence and communication skills are crucial for interview performance. 47:15 Clear concepts in English for better communication Crafted by Merlin AI.
@ar_editz8 ай бұрын
14:02 The Command is used to insert the multiple columns at a time is wrong because we should not use values keywords multiple times.
@zubershaikh29004 ай бұрын
Aap TCS me ho kya bro???
@nitinchauhan654910 ай бұрын
generally sql is not case senstive
@SabinPoudel10 ай бұрын
Yeah in terms of syntax its not case sensitive because Select and SeLect both will work.
@shubhamroy751010 ай бұрын
Yes, we should care abt small letters word and capital letters word because it provides readability.
@mahimaprasadnayak725610 ай бұрын
but while defining a table name it is
@ravishmahajan931410 ай бұрын
Sql is not case sensitive but the data in tables is case sensitive. SELECT & select are same. Table name, index name all are case insensitive. But data in table columns "SQL" is different from "sql"
@gstylegaming86589 ай бұрын
Correct so it will not create a new table it will give an error that the table already exists
@Bagad_billa24no9 ай бұрын
SQL is not a case sensitive language but for table name , column name, e.g it depends on case ❤
@hiteshrs44577 ай бұрын
Case-Insensitive: MySQL and SQL Server (when not configured otherwise) typically treat identifiers as case-insensitive. This means that "Table1" and "table1" would be considered the same. Case-Sensitive: PostgreSQL and Oracle (when not configured otherwise) treat identifiers as case-sensitive. So "Table1" and "table1" would be considered as different.
@Shyam_156716 күн бұрын
@@hiteshrs4457interviewer told me at the end of my interview Good I will share your details with hr This means?
@prasadjoshi93688 ай бұрын
Must appreciate the way she is giving answers superbb👌👌
@ShaikMuzammil-n4r10 ай бұрын
Excellent and awesome performance Good one🎉
@RiyaSingh-ty2cu3 ай бұрын
at 21:49 Count(*) will count total number of rows from a table be it null or not null where as Count (attribute_name) will count no of rows in that particular attribute(column) ignoring null rows.
@evilhunter662Ай бұрын
But here we applied a constraint that primary key exist in table so any null record who if have primary key value not null and all other values null will be counted and if primary key is also null then we cannot add that null record as we already specified primary key not while defining table so in both cases number of records should be same what do you think
@Shyam_156716 күн бұрын
@@evilhunter662interviewer told me at the end of my interview Good I will share your details with hr This means?
@piyush4296210 ай бұрын
Excellently handled the questions.
@simplyanup96588 ай бұрын
SQL isn't case sensitive. When you try to to create another table with name of any case of existing table name, it won't create.
@RS-3_roses8 ай бұрын
Yes, you're correct.
@ellenmarygeorge81306 ай бұрын
Mysql databases are not case sensitive...if you create a table with tablename EMPLOYEES and create another table with tablename employees .Both will be different tables.
@dhikeshmm6205 ай бұрын
Basic logic...u cannt give same name to multiple tables...irrespective of case sensitive
@faisalchauhan63806 ай бұрын
the question which was asked i find it very easy becz i had sql in my previuos semester
@dsa-j8x5 ай бұрын
having in semester is completetly different when it comes to nterview i hope you understand it when you face the inrerview
@zidhas54610 ай бұрын
very nice interview....had an exposure of the interview environment
@naveen_maddela10 ай бұрын
Very usefull 🎉 Very good one
@saralachattar824310 ай бұрын
It's very beautiful interview and so more helpful to everyone
@smita16687 ай бұрын
Quite informative and helpful video.
@_MSTHAKUR6 ай бұрын
at 19:50 when we are using a temp name for a column to hide the orginal name then what if someone see's that query there you are pitting na its orginal name like (roll no as ROl)
@sanjaybhandari21445 ай бұрын
Output Table won't have the original column name, but If u want to hide it from developer than DBA can use views to create an abstraction.
@pandu78209 ай бұрын
i think in sql table names are not case sensitive
@Par_3238 ай бұрын
Yes
@svbhomesproperties49583 күн бұрын
Very informative interview and useful for freshers and experience person's
@krishnaRaog216 ай бұрын
Candidate has done very well in the interview ..Congratulations
@abhishekchauhan26014 ай бұрын
You should also learn sql
@seansanwhybaptisingmakesch19302 ай бұрын
what kind of horrible black dress by the candidate..
@Shyam_156716 күн бұрын
@@abhishekchauhan2601interviewer told me at the end of my interview Good I will share your details with hr This means?
@MasterMinds-pk7vp7 ай бұрын
DDL does NOT required commit, auto commit, delete can be rolled back.
@sanjaybhandari21445 ай бұрын
DDL is mostly auto commit ,but is configurable in some databases.
@srikanthsri855 ай бұрын
Yes you said the answer ddl commands like create alter drop truncate rename once used these commands fetched the data auto commit.
@wobaidurrobtareq39419 ай бұрын
She is so confident best wishes for her.
@saidinesh43977 ай бұрын
@7:50, tables,databases are not case sensitive. in sql, nothing is case sensitive.
@suhailshaikh17716 ай бұрын
it is case sensitive though
@magxbeats6 ай бұрын
Create table Student & student as table name will create 2 different table man it's case sensitive as for queries it's not case sensitive
@saidinesh43975 ай бұрын
@@magxbeats sql throws an error . a database should have an unique table_name. it doesnt create a new table if you change the case. sql stores tablenames in lower case only.
@Tussu175 ай бұрын
Not sure about other but in Postgres it is case sensitive.
@mr_affan1510 ай бұрын
Informative interview excellent ❤
@heebakouser452911 ай бұрын
Very useful 👌
@mohammadjaved404410 ай бұрын
Good interview and confident participant
@shabbir.j.kholiya988610 ай бұрын
It's informative
@asceticadarsh828410 ай бұрын
22:21 With agg function we need to use group by function
@dhanushreddy43678 ай бұрын
Yes. But it is not mandatory. When the query is simple there is no need to use aggregate function. It all depends on the condition.
@abdulkafeel284910 ай бұрын
please upload interview for cloud engineer
@TTT-oj1mj10 ай бұрын
Hi are you Embedded Systems engineer?
@muhammadrezaulkarim585010 ай бұрын
She is excellent
@frozenlove319810 ай бұрын
Non Madarsachap.
@trueworld360410 ай бұрын
Excellent👍
@ishraquekhan20582 ай бұрын
Very confident candidate
@123....infinityanish211 ай бұрын
Excellent❤
@TusharPatil-fu1qg4 ай бұрын
Excellent 👌
@gouravshaw69396 ай бұрын
wonderful interview!
@muskan265110 ай бұрын
Very informative
@GB-fn2to6 ай бұрын
She is very confident. Good interview 😊💯👍
@naimahmad361510 ай бұрын
She handled the interview very well👍👍
@chaitraram499210 ай бұрын
Easy n basic interview
@laxmanbudhewad761110 ай бұрын
Yes too easy questions 😂
@thariq94__9 ай бұрын
Good For freshers
@vivekgodse36858 ай бұрын
@@laxmanbudhewad7611 yes SQL is easier than programming language :)
@shaiksajid613.8 ай бұрын
Easy 😂😂😂
@prakharsrivastava65719 ай бұрын
select name , max(rollno) from student group by name ???
@PreetBhanushali12346 ай бұрын
The answer of the name of student with maximum marks can be done using a sub query. The answer is : Select name from student where marks =( Select max(marks) from student); Here the query inside round brackets is knows as inner query which will be executed first which will be used as a parameter for where clause for outer query. I hope this helped you .😊😊😊😊
Sql is cas insensitive student and Student is same
@user-rg9kx7ibccd10 ай бұрын
The interview is too easy and basic even for a fresher. 😂
@StartreckTu9 ай бұрын
First of all understand that the interview questions depends on the level of the candidate. For junior levels we just only need to cover the basics and they will anyways to be guided by senior developers.
@abhileshsrivastav28175 ай бұрын
Great
@meruvadharani71216 ай бұрын
Its a very good interview
@ahlussuffiya422510 ай бұрын
Nice❤❤
@surajkumar87559 ай бұрын
Sql case sensitive??🙂
@yeet38339 ай бұрын
No
@poojakumbhar9 ай бұрын
No
@manakoi92888 ай бұрын
yes, that depends from the collation. default collation is case insensitive
@Aman__7 ай бұрын
SQL is case insensitive but i thing the Table name is not !
@ALL_IN_ONEcanbe6 ай бұрын
Yes... Queries are not case sensitive but if any call strings are case sensitive..