TCS SQL/ PLSQL Real Interview BY TCS Team Interview Recording Simulation SQL TCS Ninja Interview

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ส.ค. 2024

ความคิดเห็น • 338

  • @niranjanbhosale5101
    @niranjanbhosale5101 ปีที่แล้ว +173

    Print this info in your brains for DROP vs TRUNCATE vs DELETE
    DROP: Deletes the entire table along with its structure
    TRUNCATE: Deletes the entire table but not the structure
    DELETE: Deletes the entire table but the changes are not saved until you perform COMMIT. So basically, if any DDL command like DROP or TRUNCATE is executed an auto COMMIT is performed but we have to explicitly run the COMMIT command to save the changes permanently after we have executed a DML command.
    No other thing is required and interviewer will be satisfied. Thank you!

    • @vijayXvirat
      @vijayXvirat ปีที่แล้ว +3

      thank you
      very helpful

    • @maheshtiwari2297
      @maheshtiwari2297 ปีที่แล้ว +4

      In case of ddl we don't have to use commit statement. But in case of dml we have to do the commit to save the changes in tha databases. Also dml can be rollback but ddl can not .

    • @adnanhussain9276
      @adnanhussain9276 ปีที่แล้ว

      Yup Master data file ,userdefined data file ..

    • @closed482
      @closed482 ปีที่แล้ว

      ​@@maheshtiwari2297ddl also can be rollbacked

    • @AmolGautam
      @AmolGautam ปีที่แล้ว

      Thanks for this. But depending on the DB engine, this might not be true.
      example : In postgresql, the default setting is 'autocommit : on' .
      So every statement ( irrespective of DDL or DML ) is a transaction, unless specified otherwise.

  • @SupeSaiyan8
    @SupeSaiyan8 7 หลายเดือนก่อน +9

    *Simple English NO CONFUSION !!* 11:00
    Drop : Deleting entire table (DDL), no more evidence of table.
    DROP table ;
    Truncate: deletes all the rows of a table (DDL), structure of table is still available.
    TRUNCATE table ;
    Delete: delete one or more rows of a table (DML), commit is required.
    DELETE FROM table_name WHERE condition

  • @dheerajkoranga5012
    @dheerajkoranga5012 2 หลายเดือนก่อน +3

    Difference between Delete, Drop and Truncate
    Delete
    * delete is a dml command that is why it is used to delete values from table only not the structure
    * delete is used to delete either single row or all rows from the table based on some specific conditions
    * delete command doesn't deallocate the space used by the row and hence this memory cant be used to store other values
    * delete can be rollbacked to previous savepoints
    syntax: delete from table_name
    delete from table_name where roll_no = 15
    Truncate
    * Truncate is a DDL command which is used to delete all the records from the table
    * it delete all the rows from the table
    * it do not delete the structure of the table
    * it deallocate the memory assigned to the rows and this freed space can be used to store other values
    * it cant be rollback
    * it is usually faster than delete
    syntax: truncate table table_name
    Drop
    * Drop is a ddl command which is used to delete the already existing database object such as table, database
    * drop delete the whole table and it remove the structure as well
    * it immediately release the space
    * it cant be rollback
    * it is fastest
    syntax: drop table table_name
    drop database database_name

  • @vasusharma2394
    @vasusharma2394 2 ปีที่แล้ว +245

    from my experience he dosen't have a clear understanding of sql concepts but the questions asked by the senior is great

    • @LuciferMorningstar-tf5ls
      @LuciferMorningstar-tf5ls 2 ปีที่แล้ว +85

      Who asked you to judge? Keep your thoughts, it's precious it will help you to judge yourself.

    • @killerdroid99
      @killerdroid99 2 ปีที่แล้ว +10

      @@LuciferMorningstar-tf5ls rightfully said

    • @sulaimansheik4591
      @sulaimansheik4591 2 ปีที่แล้ว +9

      Everyone don't know everything also sql is not that mumbo jumbo any one can learn it on the job

    • @ceylongamersleague9733
      @ceylongamersleague9733 2 ปีที่แล้ว +2

      Who asks Commands on T-SQL in an interview? so you're wrong dude

    • @sudarshanpatil2227
      @sudarshanpatil2227 2 ปีที่แล้ว +3

      @@sulaimansheik4591 go home and sleep

  • @abdulrashidkadri7563
    @abdulrashidkadri7563 ปีที่แล้ว +55

    Implicit cursors are automatically created when select statements are executed. Explicit cursors needs to be defined explicitly by the user by providing a name.

    • @punnareddy8835
      @punnareddy8835 ปีที่แล้ว +3

      Not only select , for update and delete as well..

    • @supriyokumar8802
      @supriyokumar8802 ปีที่แล้ว +1

      Correct after any DML operation.😊

  • @user-ei8sv6ty2i
    @user-ei8sv6ty2i 5 หลายเดือนก่อน +2

    DDL (Create, Alter, Drop, Truncate ) DML (Insert, Update, Delete, Lock) DCL(Grant, revoke) DQL(Select) TCL(commit, Saveponit, Rollback, Set Constrain, set transection)

  • @MrSarath06
    @MrSarath06 2 ปีที่แล้ว +149

    He wants more understanding about reality of DB,RDBMS &SQL. But I can't believe it's from TCS. He tried well.

    • @hrishikeshkumar7433
      @hrishikeshkumar7433 2 ปีที่แล้ว +10

      It's mock interview bro. It's is not real interview.

    • @ioannischristou2362
      @ioannischristou2362 ปีที่แล้ว +8

      mock interview, but as a college instructor of RDBMS, if a student of mine gave such answers, they would immediately fail the course...

    • @pranav288
      @pranav288 ปีที่แล้ว +15

      @@ioannischristou2362 that shows how bad the college instructors teach

    • @anchalpandey9074
      @anchalpandey9074 ปีที่แล้ว +3

      nah bro the candidate really holds a good knowledge as being a fresher and REAL interview r not even 20% of it lol they just made it look too serious.

    • @satibomofficial5200
      @satibomofficial5200 ปีที่แล้ว +1

      @@anchalpandey9074 yeah they just see graduation & what kinda skills you have ..

  • @only_for_fun1234r
    @only_for_fun1234r ปีที่แล้ว +6

    Alter command is a DDL command
    For editing column name using alter command only using Alter table tablename change column old_name new_name;

  • @Reddy1290-h7x
    @Reddy1290-h7x 2 ปีที่แล้ว +82

    Delete is DML (Can be rolled back)command but truncate is DDL(auto commit) command

    • @theengineersdesk7930
      @theengineersdesk7930 2 ปีที่แล้ว +2

      Yes

    • @kingmakerzz123
      @kingmakerzz123 2 ปีที่แล้ว

      @Rohit Rahane use delete if u want to rollback the command to the before deletion state, use truncate if its for a permenant deletion

    • @dassundaram
      @dassundaram 2 ปีที่แล้ว

      @Rohit Rahane learn sql before comment

    • @pasinduekanayaka8023
      @pasinduekanayaka8023 2 ปีที่แล้ว

      @@samsungtv2911 TRUNCATE doesnt delete the whole table, DROP deletes the whole table. As someone pointed it out, the DELETE can be rolled back while the TRUNCATE cannot.

    • @mushu8432
      @mushu8432 ปีที่แล้ว

      When we use Delete command to delete all records from Table Identity column retain
      But when truncate command use identity column reset

  • @abdulrashidkadri7563
    @abdulrashidkadri7563 ปีที่แล้ว +30

    An SQL UPDATE statement changes the data of one or more records in a table. Either all the rows can be updated, or a subset may be chosen using a condition. The UPDATE statement has the following form: UPDATE table_name SET column_name = value [, column_name = value ...] [ WHERE condition]

    • @entertainingshorts24
      @entertainingshorts24 ปีที่แล้ว +1

      please tell that can alone SQL lands you a job in any IT company.
      Actually I want to join IT sector that's why.

    • @entertainingshorts24
      @entertainingshorts24 ปีที่แล้ว

      @@harshitverma2707 ok,
      Also plz tell complete free bootcamp for SQL.

    • @Manojkumar__
      @Manojkumar__ ปีที่แล้ว

      @@entertainingshorts24 you can get this from TH-cam/Google just by searching

  • @dipjoytidebnath5530
    @dipjoytidebnath5530 2 ปีที่แล้ว +12

    Begin
    Select * from tablename;
    End it should work..some times sp have no parameter and not requured declare any variable.interviewer concept also not clear

    • @dineshchandrag2640
      @dineshchandrag2640 2 ปีที่แล้ว +1

      It will throw error in plsql
      It will work in TSQL

  • @raghavverma120
    @raghavverma120 2 ปีที่แล้ว +68

    Dbms is a management system that helps in managing ,retrieving data from a database .. it like a ui that helps customer interact with the underlying database system.... whereas sql is a query language..

    • @bhaskarm632
      @bhaskarm632 2 ปีที่แล้ว +3

      True. We can query database in multiple ways SQL is one of the way

    • @josejayant3127
      @josejayant3127 2 ปีที่แล้ว +2

      DBMS is not like a UI.

    • @idriveridesharing6493
      @idriveridesharing6493 ปีที่แล้ว

      Don't behave as if you know everything You don't know anything

    • @entertainingshorts24
      @entertainingshorts24 ปีที่แล้ว +1

      Anyone please tell that can alone SQL lands you a job in any IT company.
      Actually I want to join IT sector that's why.

    • @maheshtiwari2297
      @maheshtiwari2297 ปีที่แล้ว

      ​@@entertainingshorts24 learn SQL with Excel that would be helpful for business analyst job also you can learn power bi which is just required 3-4 months.

  • @souravbhowmickn762
    @souravbhowmickn762 ปีที่แล้ว +4

    Delete command is used to remove the rows from the table but it's not clear the table space.
    For trunc it will also remove the rows from the table but it's clear the table space.
    Drop command used for removing the entire table structure.

  • @mehtabhussain5363
    @mehtabhussain5363 2 ปีที่แล้ว +69

    As a fresher , he has good knowledge for TCS

    • @MrGoodLuck
      @MrGoodLuck ปีที่แล้ว +2

      😂

    • @nishanthbunnu2582
      @nishanthbunnu2582 ปีที่แล้ว +4

      Joke of the day 😂

    • @views-re2om
      @views-re2om 9 หลายเดือนก่อน

      i am ux designer he is dumb and fit for TCS

    • @rd-rams2193
      @rd-rams2193 8 หลายเดือนก่อน

      😂

  • @sanmanbhusari496
    @sanmanbhusari496 2 ปีที่แล้ว +109

    Look like simulation of TCS Fresher interview: Overall all it is good simulation but TCS Interview will not be this long for Fresher also Fresher will not be evaluated just on topic e.g. SQL etc as your specialized area will be choosen once you join TCS and you will only expected to know basics here lots of advance questions were asked

    • @sanmanbhusari496
      @sanmanbhusari496 2 ปีที่แล้ว +16

      But I think this could be understood as a interview for someone who has around 1-2 years of experience

    • @sanatanihindu3089
      @sanatanihindu3089 2 ปีที่แล้ว +2

      @@sanmanbhusari496 what is duration of tcs interview

    • @sanmanbhusari496
      @sanmanbhusari496 2 ปีที่แล้ว +1

      @@sanatanihindu3089 15 -30 mins on average

    • @techkumar9760
      @techkumar9760 2 ปีที่แล้ว

      @@sanatanihindu3089 12 to 20 min

    • @shazzl
      @shazzl ปีที่แล้ว +1

      I've given interview trust me it was for 5 minutes😂

  • @onelove177
    @onelove177 2 ปีที่แล้ว +17

    Being in college I would like to say he is just asking simple and medium level questions of SQL like command and etc

    • @nationalist3662
      @nationalist3662 2 ปีที่แล้ว +5

      TCS ka interveiw hai...google ka nahi🤣😂... What to expect..

    • @floridan1238
      @floridan1238 2 ปีที่แล้ว +3

      INR 25k salary

    • @carcrazynishant
      @carcrazynishant ปีที่แล้ว

      What are some of the medium and difficult questions that are generally asked.?

    • @sourjadhar9332
      @sourjadhar9332 ปีที่แล้ว

      As a fresher aur kia puchega bhai?

  • @anantthakur1630
    @anantthakur1630 2 ปีที่แล้ว +62

    Thank you so much for this amazing interview video, you are doing great help to students

  • @shubhamshakya6762
    @shubhamshakya6762 2 ปีที่แล้ว +16

    He has joined TCS three months back and even he doesn't know the services provide by the tcs , and name of CEO .... also he does not prepared very basic queries...

    • @vinaylanjewar7210
      @vinaylanjewar7210 2 ปีที่แล้ว

      Is it true ???

    • @bendover-bz4bc
      @bendover-bz4bc 2 ปีที่แล้ว +13

      Why do you need to know CEOs name ? Is this private company or poltical dynasty where you have to lick your leader's boots ?

    • @santoshtale1243
      @santoshtale1243 2 ปีที่แล้ว +1

      He just trying to give answers like a fresher

    • @try3825
      @try3825 ปีที่แล้ว

      @@bendover-bz4bc true brother why would we care who the hell they are. we just want to work and get some money... #shitcorporate

  • @jaideeplobo6096
    @jaideeplobo6096 2 ปีที่แล้ว +71

    My tcs interview is very easy, just asked about my project and some questions. Just 20 minutes. It is very easy to clear the round.

    • @Ak-um1yg
      @Ak-um1yg 2 ปีที่แล้ว +2

      Hello bro please answer
      U were selected in TCS digital?
      On campus or Offcampus?

    • @jaideeplobo6096
      @jaideeplobo6096 2 ปีที่แล้ว

      @@Ak-um1yg off campus

    • @Ak-um1yg
      @Ak-um1yg 2 ปีที่แล้ว +1

      @@jaideeplobo6096 Bro please tell the procedure ..
      I am in Third Year of my Computer Engineering ...I need some guidance ....
      Had u done any industrial internship ?
      .I think u had given TCS NQT ?? how much was your score ..and what is the procedure after that ...What did they ask in the interview ..In the interview did they ask U to code??? Or only theoretical questions based on Project / intership . Did they ask about Machine Learning/ Ai/ Cloud/SQL like technologies??
      If u take some minutes and answer these questions it will be really helpful .. 🙏🙏🙏🙏🙏

    • @jaideeplobo6096
      @jaideeplobo6096 2 ปีที่แล้ว +6

      @@Ak-um1yg these type question asking only in product base company like Amazon. It is tcs they need 100k employees this time, so whoever clears the first round then think they are selected in the company same for wipro also (i got placed in 3 companies). In tcs they asked about my project only no coding and questions. In wipro 2 coding questions like sorting (wipro taken 5 minutes interview to me). Don't worry bro better good in communication first and use hackerearth platform to practice ur coding skill. This much enough to crack any interview. All the best :)

    • @Ak-um1yg
      @Ak-um1yg 2 ปีที่แล้ว +1

      @@jaideeplobo6096 Thank you so much ... 🙏🙏 Please answer this last question ... Did u do any Internship ?? And I think u r in Fourth year ...For TCS NQT Third Year students are also eligible I am thinking to give that test ...How much was your Percentage??
      Bro my senior told to do intership for better job offer...But industry intership demands too much
      Congratulations for getting selected ...All the best for your Bright future

  • @hellocartoons1735
    @hellocartoons1735 2 ปีที่แล้ว +10

    Delete data can perform rollback , but truncate is auto commit, only dba can get back from back end.

  • @attaullahkhan2504
    @attaullahkhan2504 2 ปีที่แล้ว +18

    Is he fresher?
    Look like fresher

  • @sarojrajah
    @sarojrajah 2 ปีที่แล้ว +3

    I like it sir
    And very very helpful videos
    Isi trah ka video de har syllabus pe..

  • @sandeeplvrs
    @sandeeplvrs 2 ปีที่แล้ว +27

    Candidate has good articulation but needs more practice on SQL commands.. I don't think he has cleared this round.

    • @epsilon5437
      @epsilon5437 ปีที่แล้ว

      It is mock round only

  • @hellocartoons1735
    @hellocartoons1735 2 ปีที่แล้ว +2

    Update table name set salary = 1000 after that you must commit else it will not be committed unless you set auto comit in settings

  • @dineshchandrag2640
    @dineshchandrag2640 2 ปีที่แล้ว +44

    Interviewer is expecting more from a fresher

    • @AIBot354
      @AIBot354 2 ปีที่แล้ว +2

      But the interviewee is not able to list the DDL Dml commands...and he was answered all questions wrong.

    • @utkarsh_108
      @utkarsh_108 2 ปีที่แล้ว +1

      @@AIBot354 that's the mistake freshers do. quality over quantity

  • @traveller9672
    @traveller9672 2 ปีที่แล้ว +23

    Truncate deleted the entire data, drop deleted in the data from the table, it was auto commit so we can't retrieve. delete option in dml so we can rollback if before commit and we need to use save point

    • @DhavalAhir10
      @DhavalAhir10 2 ปีที่แล้ว +1

      You are wrong, Truncare deleted just only data not schema..
      But drop deleted data as well as schema

    • @DhavalAhir10
      @DhavalAhir10 2 ปีที่แล้ว

      @STANDARD DEVIATION 🤣🤣🤣🤣🤣

    • @cktech9
      @cktech9 2 ปีที่แล้ว

      Ever since table structure remained same, schema will not be deleted only if we use truncate. But drop deletes data along with table structure, we could expect shema would also be deleted.

  • @viratchintu_18
    @viratchintu_18 2 ปีที่แล้ว +15

    Really helpful 👍
    Thanks for sharing 🤝

  • @PiyushSharma-sy9nk
    @PiyushSharma-sy9nk 2 ปีที่แล้ว +2

    Kal hi interview hua tha mera 2 hours
    Jisme Query or practical 80% and 20% theory
    So Query likhna sikhe
    Unlimited practice kriye

    • @ashugoswami1263
      @ashugoswami1263 ปีที่แล้ว +1

      Kis cheez ka interview tha bhai..?

  • @geetikachauhan2587
    @geetikachauhan2587 ปีที่แล้ว +2

    package is 15 years old and questions are also of same era

  • @huntepr1
    @huntepr1 ปีที่แล้ว +9

    I have been doing sql for years and sometimes I forget the actual definition of things, but I know how to use them. This is why for interviews I would just go over a DBMS cheat sheet.

    • @ankitgupta3604
      @ankitgupta3604 ปีที่แล้ว

      Hi there, do u have any cheat sheet with u. I need to appear for the interview but finding the preparation a bit difficult. Any help will be highly appreciated. Thanks

    • @itsme_notbatman
      @itsme_notbatman 11 หลายเดือนก่อน

      Hi, same question..kindly help

  • @soniaengr
    @soniaengr 2 ปีที่แล้ว +23

    TCS interview are so detailed I did not know this

    • @HiteshSote
      @HiteshSote 2 ปีที่แล้ว +2

      I think its for experienced 1-3 yrs

    • @ankshi80
      @ankshi80 2 ปีที่แล้ว +1

      No yarr I have just learn all this in my BCA 4th sem and I can answer maximum questions

    • @vijaybhaskar0777
      @vijaybhaskar0777 ปีที่แล้ว

      Good improve pooja

    • @Somnath-je9nd
      @Somnath-je9nd ปีที่แล้ว

      @@HiteshSote are u sure??

  • @xploreindiawithsandhya5287
    @xploreindiawithsandhya5287 2 ปีที่แล้ว +20

    very helpful.....please do video On only SQL interview for freshers

  • @krishnendudeb2921
    @krishnendudeb2921 2 ปีที่แล้ว +37

    Sir, this is very helpful...Thanks a lot...please make a video on MEAN stack then it will be very helpful for us...

  • @Amar27_Feb
    @Amar27_Feb 2 ปีที่แล้ว +15

    Good initiative .. Very Helpful for Job seekers ..

  • @sbvinayak67sbvinayak48
    @sbvinayak67sbvinayak48 ปีที่แล้ว +3

    thank you panel for making out 0:42

  • @roysourav1991
    @roysourav1991 2 ปีที่แล้ว +22

    @14:19 the answer shocked Mr. Srinivas

  • @kumareshview
    @kumareshview 2 ปีที่แล้ว +9

    Delete maintains transaction logs but Truncate can't.

  • @hellocartoons1735
    @hellocartoons1735 2 ปีที่แล้ว +3

    Stored programs date functions , char, numeric functions will be used in sql

  • @neeraj_ydv
    @neeraj_ydv 2 ปีที่แล้ว +1

    Everytime the interviewer says "aienn".. he means it and you know that you have made some mistake.

  • @entertainingshorts24
    @entertainingshorts24 ปีที่แล้ว +3

    Anyone please tell that can alone SQL lands you a job in any IT company.
    Actually I want to join IT sector that's why.

  • @ProgrammingTipsNTricksTelugu
    @ProgrammingTipsNTricksTelugu 2 ปีที่แล้ว +10

    Man this interview is disaster

  • @gamerandmemer5016
    @gamerandmemer5016 2 ปีที่แล้ว +6

    Interview main English main comfortable ni hai to. Hindi main de skte hai ki ni. Matlab Hindi mix English??????

    • @ranjanmaithani6263
      @ranjanmaithani6263 2 ปีที่แล้ว

      That's the issue. You should be able to communicate in English otherwise you won't be able to communicate with your team members only cuz they might be from different part of the country

    • @omiii5763
      @omiii5763 8 หลายเดือนก่อน

      Bhaiya kannad me bhi de sakte ho 😅

  • @TausiFlix
    @TausiFlix 2 ปีที่แล้ว +7

    How panel select the subject for the technical round? Is it from the skills mentioned on cv or it can be anything?
    Plz I want to know

    • @makenowacademy
      @makenowacademy ปีที่แล้ว

      its from cv and in job description it will be mentioned

  • @goldenorchid2453
    @goldenorchid2453 ปีที่แล้ว +2

    The interview is about basic sql command

  • @Cnu185
    @Cnu185 2 ปีที่แล้ว +9

    How to apply for this role?

  • @tech_boy_4166
    @tech_boy_4166 ปีที่แล้ว +6

    ALTER and CREATE is DDL command
    INSERT,UPDATE AND DELETE are the DML command

  • @Shivamvlogs_350
    @Shivamvlogs_350 2 ปีที่แล้ว +8

    Thanks for the video 😀

  • @richashrivastava2068
    @richashrivastava2068 2 ปีที่แล้ว +15

    I think you should add one more thing after interview you should send mail to person you are selected or not , who gave interview

  • @muthuvel6478
    @muthuvel6478 ปีที่แล้ว +1

    Procedure is numerical method functions is varchar

  • @veeraveera4617
    @veeraveera4617 2 ปีที่แล้ว +13

    Its too much 51min interview aah...OMG

    • @k.l3447
      @k.l3447 2 ปีที่แล้ว

      Ss

  • @manikandanr1682
    @manikandanr1682 ปีที่แล้ว +2

    How to apply TCS fresher Oracle developer job

  • @jayaghate1225
    @jayaghate1225 ปีที่แล้ว

    Thank u for this video..its very helpful to prepare for interview

  • @atulrokade1031
    @atulrokade1031 2 ปีที่แล้ว +6

    Alter =DML command 6:50😂

  • @adhirajmajumder
    @adhirajmajumder 2 ปีที่แล้ว +2

    He's naive, these questions are extremely basic is it for fresher?

  • @divyeshsathya5205
    @divyeshsathya5205 2 ปีที่แล้ว +4

    Are these questions asked for everyone common for all computer streams or only those who choose data science stream

    • @tanyasingh5453
      @tanyasingh5453 2 ปีที่แล้ว

      If you choose DBMS only then the deeper knowledge questions would be asked... But if you're from data science so it will include the languages that are used within data science. Because DBMS means managing a database and to manage that database A structured query language (SQL) is used... Same goes with the Data Science domain... If you mention that you're into database or might have been using a database to store your data and use the CRUD and other options on it then some of these questions are for sure to be asked about.

    • @divyeshsathya5205
      @divyeshsathya5205 2 ปีที่แล้ว

      @@tanyasingh5453 noted thanks 🙏🏻

  • @aryaarjun_1138
    @aryaarjun_1138 2 ปีที่แล้ว +19

    helpful video ☺️

  • @vishnudeshmukh4749
    @vishnudeshmukh4749 ปีที่แล้ว +10

    i want to ask a question that , fluent english is mandatory for interview bcoz sometime candidates has knowledge but they don't express front of interviewer bcoz he don't speak english fluently. bcoz i am one of them😊

    • @makenowacademy
      @makenowacademy ปีที่แล้ว +1

      it depends you just need to convey the things properly to the interview about the concept or answer thats enough

  • @skyislaughing8u867
    @skyislaughing8u867 2 ปีที่แล้ว +5

    I think it is implicit or explicit cursor not commit

    • @bhagyasudhir1060
      @bhagyasudhir1060 ปีที่แล้ว +1

      No implicit commit is there ..for DDL commands automatically one implicit commit created,DML not .. actually DDL commands directly interact with database DML commands not Interact with database directly so that's why when we use the truncate (DDL command) the data deleted faster than Delete(DML command)..so the interviewer expecting that

  • @idriveridesharing6493
    @idriveridesharing6493 ปีที่แล้ว +1

    You can't ask scenarios in an interview that came across in your work

  • @vinitdarne1348
    @vinitdarne1348 11 หลายเดือนก่อน +1

    You can use varchar2(50) type datatype where it will only use needed space , suppose your name has 10 charector then it will automatically del 40 from size 50...

    • @revathysubramani6891
      @revathysubramani6891 11 หลายเดือนก่อน +1

      Is that possible to change or alter the data type suppose varchar2(50) was created intially can we alter it to varchar2 (70) later

    • @impossible6389
      @impossible6389 9 หลายเดือนก่อน

      ​@revathysubramani6891 yes. We can change the datatype

  • @dyk729
    @dyk729 2 ปีที่แล้ว +13

    What a mess bro 😳.. I m from Civil Engineering, and in 2 months I learned Python,SQL,Excel . Probably more than him🙄..

    • @prince_vlogggs885
      @prince_vlogggs885 2 ปีที่แล้ว +1

      U get any interview?

    • @divyanshushankar8134
      @divyanshushankar8134 2 ปีที่แล้ว +4

      How to learn? I am jobless since 2018. I was trying to get a job in core sector but couldn't get any. Is it possible to get one in IT sector provided I learn the skills?

    • @adityab.k7286
      @adityab.k7286 2 ปีที่แล้ว

      @@divyanshushankar8134 mechanical ?

    • @mitanshubaranwal8878
      @mitanshubaranwal8878 2 ปีที่แล้ว

      @@divyanshushankar8134 Han bhai learn from you tube take 1 language and then start practising it on geeks for geeks and sort by easiest ones in GFG and SQL . Later if you’re okay with basics start learning DS and take some project

    • @divyanshushankar8134
      @divyanshushankar8134 2 ปีที่แล้ว

      @@adityab.k7286 civil

  • @swapnildambhare
    @swapnildambhare 2 ปีที่แล้ว +2

    My Question is that he is selected or not?

  • @sandipansarkar9211
    @sandipansarkar9211 2 ปีที่แล้ว +1

    finished watching

  • @soundsofnature4899
    @soundsofnature4899 2 ปีที่แล้ว +1

    thanks bro nice video

  • @rktechworld470
    @rktechworld470 ปีที่แล้ว

    Update
    tablename
    Set
    Salary=1000
    Where
    catageroy=departmentname

  • @vineysagar7902
    @vineysagar7902 2 ปีที่แล้ว +3

    Truncate basically remove indexs also but delete don't

    • @shakiraafshan6544
      @shakiraafshan6544 2 ปีที่แล้ว +1

      No truncate removes only table data it's constraints, indexes etc will still be retained.
      Neither delete nor truncate will remove index

  • @SP_Investments
    @SP_Investments ปีที่แล้ว +2

    The alter table is DDL comand in sql

  • @farzin9421
    @farzin9421 2 ปีที่แล้ว

    :') These qualifications woun't even give me chance to be in an internship in Bangladesh :')

  • @jyotirmoyhati7724
    @jyotirmoyhati7724 2 ปีที่แล้ว +6

    Under how many days TCS inform as mail after final examination? Please reply.

    • @pushp99
      @pushp99 2 ปีที่แล้ว

      2 months

    • @jyotirmoyhati7724
      @jyotirmoyhati7724 2 ปีที่แล้ว

      Sir/madam,
      My final round was happend in 3-4 day's ago. When shall I get the final selection information from the side of TCS? If selected what shall I have to do before joining as practice? Are there any option to select own choice of location? I am waiting for your valuable response.

    • @pushp99
      @pushp99 2 ปีที่แล้ว

      @@jyotirmoyhati7724 yes ,you will be offered to choose a location plus now you just have to wait for their reply mail with offer letter
      . Most probably the training will be online.
      Learn python or java plus sql and some bash shell language as it helps in the obtaining the extra 60k bonus on joining.
      (IPA Exam)

    • @kirannaik8898
      @kirannaik8898 2 ปีที่แล้ว

      @@pushp99 how long it will going to take for examination conduction mail? I have applied on 20th of this month still no updates yet

    • @pushp99
      @pushp99 2 ปีที่แล้ว

      @@kirannaik8898 are you asking for NINJA?

  • @superior_ironman
    @superior_ironman 2 ปีที่แล้ว +15

    10:18 no we will use LIMIT for deleting one record from the table like 'LIMIT 1'

    • @kingmakerzz123
      @kingmakerzz123 2 ปีที่แล้ว +6

      a limit clause justs limit the number of rows shown using select statement, does not delete anything

    • @calmspace8221
      @calmspace8221 2 ปีที่แล้ว

      @@kingmakerzz123 😂😂true

    • @simransoni6641
      @simransoni6641 ปีที่แล้ว

      ​@@calmspace8221what is there to laugh. Everyone is a learner here, we can't laugh in someone's lack of knowledge.

  • @hellocartoons1735
    @hellocartoons1735 2 ปีที่แล้ว

    Keep in the loop

  • @hellocartoons1735
    @hellocartoons1735 2 ปีที่แล้ว

    All hierarchy answers through based on your TH-cam video may be zigzagged

  • @bindu704
    @bindu704 ปีที่แล้ว +1

    Please tell me only oracle(sql/plsql)can we get the job

  • @nazishtabassum2573
    @nazishtabassum2573 2 ปีที่แล้ว +6

    Please make a video on Oracle SOA Developer

  • @AjayRana-gc9gl
    @AjayRana-gc9gl 2 ปีที่แล้ว

    More informative.... thanks for plenty of efforts...

  • @hellocartoons1735
    @hellocartoons1735 2 ปีที่แล้ว +2

    No dil will be rolled back

  • @hellocartoons1735
    @hellocartoons1735 2 ปีที่แล้ว +2

    You must drop table

  • @karrisateesh7938
    @karrisateesh7938 ปีที่แล้ว

    very good vedio helpful.

  • @ravikantsharma8480
    @ravikantsharma8480 ปีที่แล้ว +1

    Sir jst could I ask a question can we explain something like definations in Hindi .
    Bocz
    e many candidate are can't fluently English

    • @makenowacademy
      @makenowacademy ปีที่แล้ว +1

      no use of hindi . I just want to say that before interview write a scenario and have more and more mock interviews so you can give the same in interview in english . You just need to convey your answer properly

  • @sourjadhar9332
    @sourjadhar9332 ปีที่แล้ว +1

    Truncate basically drops the table and creates the structure back ..so it is ddl and dml both

  • @dolonghanty3854
    @dolonghanty3854 2 ปีที่แล้ว +2

    Make a vedio of. Net developer

  • @himanish2006
    @himanish2006 2 ปีที่แล้ว +26

    Is there any demand for plsql developer ?

    • @21Tushar21
      @21Tushar21 2 ปีที่แล้ว +2

      Future is all about data....so yes

    • @himanish2006
      @himanish2006 2 ปีที่แล้ว +1

      Is it confirmed ?

    • @gsv9773
      @gsv9773 2 ปีที่แล้ว +3

      @@himanish2006 Ya it's confirmed. We have received the future letter along with offer letter

    • @saurabhbatheja
      @saurabhbatheja 2 ปีที่แล้ว

      Yes

  • @sourjadhar9332
    @sourjadhar9332 ปีที่แล้ว +1

    We can use sp.rename to rename a column

  • @rajuraju-nx7py
    @rajuraju-nx7py 2 ปีที่แล้ว +8

    It seems like fresher interview

  • @killerdroid99
    @killerdroid99 2 ปีที่แล้ว +4

    That's why I use prisma for database interaction

  • @shalinigupta5501
    @shalinigupta5501 2 ปีที่แล้ว

    TR interview duration is just 30min

  • @vishalsaxena5081
    @vishalsaxena5081 2 ปีที่แล้ว +4

    mera bhi kra do tcs m interview

  • @ankushdhar3308
    @ankushdhar3308 11 หลายเดือนก่อน +1

    ALTER is DDL

  • @akashkadam6874
    @akashkadam6874 2 ปีที่แล้ว +2

    Where is implementation

  • @technicalrider6196
    @technicalrider6196 2 ปีที่แล้ว +1

    they asking hard questions to freshers

  • @muthuvel6478
    @muthuvel6478 ปีที่แล้ว +1

    Rajesh gobinath ceo in tcs

  • @rangraopawar764
    @rangraopawar764 2 ปีที่แล้ว +4

    Hello sir, if possible can you please arrange real interview for me

  • @vineetjha8715
    @vineetjha8715 2 ปีที่แล้ว +3

    Is SQL a programming language??

    • @nayudug8407
      @nayudug8407 2 ปีที่แล้ว

      Sql is not an program language which doesn't have any conditional and loop statements and logical operations it can't be used anything other than data manipulation

    • @MrBlue-qe7yl
      @MrBlue-qe7yl 2 ปีที่แล้ว +2

      @@nayudug8407 you are wrong it is a programming language and it does have conditional statements

    • @nayudug8407
      @nayudug8407 2 ปีที่แล้ว

      @@MrBlue-qe7yl pl/sql is procedural language

    • @MrBlue-qe7yl
      @MrBlue-qe7yl 2 ปีที่แล้ว +1

      @@nayudug8407 the question is not about plsql being procedural language. it is about whether sql is a programming language.

  • @vinayparashar8272
    @vinayparashar8272 2 ปีที่แล้ว

    Rajesh Gopinathan ceo of TCS

  • @amarmarne542
    @amarmarne542 ปีที่แล้ว

    Alter table customer modify(address char(10),
    Phone N(20));

  • @sunilrathod4839
    @sunilrathod4839 ปีที่แล้ว

    We have delete , truncate, drop command to delete data , table..

  • @prabhur2334
    @prabhur2334 ปีที่แล้ว

    This interview for freshers or experienced?

  • @anshuljain216
    @anshuljain216 ปีที่แล้ว +1

    Very nice interview questions 👌🏻

  • @premvajare7136
    @premvajare7136 2 ปีที่แล้ว +1

    Sir can I get good job after the bcs

  • @gamingwithlegend3183
    @gamingwithlegend3183 2 ปีที่แล้ว +2

    Truncate command delete Identity but not delete command.