TCS SQL/ PLSQL Real Interview BY TCS Team | SQL Interview Questions and Answers TCS Ninja

Поділитися
Вставка
  • Опубліковано 6 січ 2025

КОМЕНТАРІ •

  • @SupeSaiyan8
    @SupeSaiyan8 11 місяців тому +10

    *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

  • @niranjanbhosale5101
    @niranjanbhosale5101 Рік тому +189

    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 Рік тому +5

      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.

  • @Rachanacheekurumilli-q4w
    @Rachanacheekurumilli-q4w 10 місяців тому +7

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

  • @abdulrashidkadri7563
    @abdulrashidkadri7563 2 роки тому +59

    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 2 роки тому +3

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

    • @supriyokumar8802
      @supriyokumar8802 Рік тому +1

      Correct after any DML operation.😊

  • @MrSarath06
    @MrSarath06 2 роки тому +153

    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 роки тому +11

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

    • @ioannischristou2362
      @ioannischristou2362 2 роки тому +9

      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 2 роки тому +16

      @@ioannischristou2362 that shows how bad the college instructors teach

    • @WebDevAnjali
      @WebDevAnjali 2 роки тому +4

      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 2 роки тому +1

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

  • @sarojrajah
    @sarojrajah 2 роки тому +4

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

  • @only_for_fun1234r
    @only_for_fun1234r Рік тому +9

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

  • @anantthakur1630
    @anantthakur1630 2 роки тому +63

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

  • @vasusharma2394
    @vasusharma2394 2 роки тому +253

    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 роки тому +88

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

    • @killerdroid99
      @killerdroid99 2 роки тому +11

      @@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 роки тому +3

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

    • @sudarshanpatil2227
      @sudarshanpatil2227 2 роки тому +3

      @@sulaimansheik4591 go home and sleep

  • @dheerajkoranga5012
    @dheerajkoranga5012 6 місяців тому +5

    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

  • @viratchintu_18
    @viratchintu_18 2 роки тому +15

    Really helpful 👍
    Thanks for sharing 🤝

  • @Reddy1290-h7x
    @Reddy1290-h7x 2 роки тому +83

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

    • @theengineersdesk7930
      @theengineersdesk7930 2 роки тому +2

      Yes

    • @kingmakerzz123
      @kingmakerzz123 2 роки тому +1

      @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 2 роки тому

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

  • @raghavverma120
    @raghavverma120 2 роки тому +70

    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 2 роки тому

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

    • @entertainingshorts24
      @entertainingshorts24 2 роки тому +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.

  • @abdulrashidkadri7563
    @abdulrashidkadri7563 2 роки тому +31

    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 2 роки тому +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 UA-cam/Google just by searching

  • @dipjoytidebnath5530
    @dipjoytidebnath5530 2 роки тому +13

    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

  • @Amar27_Feb
    @Amar27_Feb 2 роки тому +16

    Good initiative .. Very Helpful for Job seekers ..

  • @souravbhowmickn762
    @souravbhowmickn762 Рік тому +5

    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.

  • @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?

  • @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...

  • @hellocartoons1735
    @hellocartoons1735 2 роки тому +11

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

  • @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 роки тому +2

      He just trying to give answers like a fresher

    • @try3825
      @try3825 2 роки тому +1

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

  • @Shivamvlogs_350
    @Shivamvlogs_350 2 роки тому +8

    Thanks for the video 😀

  • @sanmanbhusari496
    @sanmanbhusari496 2 роки тому +112

    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 2 роки тому +1

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

  • @xploreindiawithsandhya5287
    @xploreindiawithsandhya5287 2 роки тому +21

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

  • @mehtabhussain5363
    @mehtabhussain5363 2 роки тому +70

    As a fresher , he has good knowledge for TCS

  • @jayaghate1225
    @jayaghate1225 Рік тому

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

  • @soniaengr
    @soniaengr 2 роки тому +24

    TCS interview are so detailed I did not know this

    • @HiteshSote
      @HiteshSote 2 роки тому +3

      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 2 роки тому

      Good improve pooja

    • @Somnath-je9nd
      @Somnath-je9nd 2 роки тому

      @@HiteshSote are u sure??

  • @roysourav1991
    @roysourav1991 2 роки тому +22

    @14:19 the answer shocked Mr. Srinivas

  • @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.

  • @aryaarjun_1138
    @aryaarjun_1138 2 роки тому +19

    helpful video ☺️

  • @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

  • @entertainingshorts24
    @entertainingshorts24 2 роки тому +4

    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.

  • @soundsofnature4899
    @soundsofnature4899 2 роки тому +1

    thanks bro nice video

  • @atulrokade1031
    @atulrokade1031 2 роки тому +6

    Alter =DML command 6:50😂

  • @geetikachauhan2587
    @geetikachauhan2587 2 роки тому +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 Рік тому

      Hi, same question..kindly help

  • @IWouldLikeToEast
    @IWouldLikeToEast Місяць тому

    DELETE
    Deletes specific rows based on condition
    DROP
    Deletes the entire table or database
    TRUNCATE
    Deletes all rows but retains table structure

  • @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

  • @karrisateesh7938
    @karrisateesh7938 2 роки тому

    very good vedio helpful.

  • @neeraj_ydv
    @neeraj_ydv 2 роки тому +1

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

  • @hellocartoons1735
    @hellocartoons1735 2 роки тому +3

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

  • @sandeeplvrs
    @sandeeplvrs 2 роки тому +27

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

  • @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

  • @kumareshview
    @kumareshview 2 роки тому +9

    Delete maintains transaction logs but Truncate can't.

  • @attaullahkhan2504
    @attaullahkhan2504 3 роки тому +18

    Is he fresher?
    Look like fresher

  • @sbvinayak67sbvinayak48
    @sbvinayak67sbvinayak48 2 роки тому +3

    thank you panel for making out 0:42

  • @AjayRana-gc9gl
    @AjayRana-gc9gl 2 роки тому

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

  • @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 2 роки тому

      its from cv and in job description it will be mentioned

  • @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

  • @SP_Investments
    @SP_Investments 2 роки тому +2

    The alter table is DDL comand in sql

  • @muthuvel6478
    @muthuvel6478 2 роки тому +1

    Procedure is numerical method functions is varchar

  • @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

  • @tech_boy_4166
    @tech_boy_4166 2 роки тому +6

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

  • @sandipansarkar9211
    @sandipansarkar9211 2 роки тому +1

    finished watching

  • @manikandanr1682
    @manikandanr1682 Рік тому +2

    How to apply TCS fresher Oracle developer job

  • @Cnu185
    @Cnu185 2 роки тому +9

    How to apply for this role?

  • @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

  • @ravikantsharma8480
    @ravikantsharma8480 2 роки тому +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 2 роки тому +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

  • @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 🙏🏻

  • @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 Рік тому

      Bhaiya kannad me bhi de sakte ho 😅

  • @nazishtabassum2573
    @nazishtabassum2573 2 роки тому +6

    Please make a video on Oracle SOA Developer

  • @vinitdarne1348
    @vinitdarne1348 Рік тому +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 Рік тому +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 Рік тому

      ​@revathysubramani6891 yes. We can change the datatype

  • @dolonghanty3854
    @dolonghanty3854 2 роки тому +2

    Make a vedio of. Net developer

  • @anshuljain216
    @anshuljain216 Рік тому +1

    Very nice interview questions 👌🏻

  • @idriveridesharing6493
    @idriveridesharing6493 2 роки тому +1

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

  • @ProgrammingTipsNTricksTelugu
    @ProgrammingTipsNTricksTelugu 2 роки тому +10

    Man this interview is disaster

  • @killerdroid99
    @killerdroid99 2 роки тому +4

    That's why I use prisma for database interaction

  • @psgaming6928
    @psgaming6928 15 днів тому

    basically alter command is a DDL command

  • @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?

  • @farzin9421
    @farzin9421 2 роки тому

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

  • @skyislaughing8u867
    @skyislaughing8u867 2 роки тому +5

    I think it is implicit or explicit cursor not commit

    • @bhagyasudhir1060
      @bhagyasudhir1060 2 роки тому +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

  • @veeraveera4617
    @veeraveera4617 2 роки тому +14

    Its too much 51min interview aah...OMG

  • @hellocartoons1735
    @hellocartoons1735 2 роки тому +3

    Procedure performance an action and function returns one value and if you want to retrieve more values use loops and cursors

    • @easha30
      @easha30 2 роки тому +2

      Answer for that question is to use OUT parameters while calling a procedure or function to return more than one value.

    • @BapiBehera-f2t
      @BapiBehera-f2t Рік тому

      Pipeline function

  • @sourjadhar9332
    @sourjadhar9332 Рік тому +1

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

  • @bindu704
    @bindu704 Рік тому +1

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

  • @Mahesh18225
    @Mahesh18225 Рік тому

    good interview

  • @rktechworld470
    @rktechworld470 Рік тому

    Update
    tablename
    Set
    Salary=1000
    Where
    catageroy=departmentname

  • @sourjadhar9332
    @sourjadhar9332 Рік тому +1

    We can use sp.rename to rename a column

  • @adhirajmajumder
    @adhirajmajumder 2 роки тому +2

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

  • @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

  • @ravishmahajan9314
    @ravishmahajan9314 2 роки тому

    Good 👍

  • @vishnudeshmukh4749
    @vishnudeshmukh4749 2 роки тому +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 2 роки тому +1

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

  • @sunilrathod4839
    @sunilrathod4839 2 роки тому

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

  • @kanchuma1044
    @kanchuma1044 Рік тому

    Useful..how much experience he hace?

  • @amarmarne542
    @amarmarne542 2 роки тому

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

  • @bharatiya804
    @bharatiya804 2 роки тому

    Thanks

  • @hasanblog
    @hasanblog 2 роки тому

    SQL plus means user practice compiler...

  • @himanish2006
    @himanish2006 3 роки тому +26

    Is there any demand for plsql developer ?

    • @Happyfaces2121
      @Happyfaces2121 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

  • @ArchnaVijay
    @ArchnaVijay 2 роки тому

    basics should be brushed up well here ...

  • @swapnildambhare
    @swapnildambhare 2 роки тому +2

    My Question is that he is selected or not?

  • @hellocartoons1735
    @hellocartoons1735 2 роки тому

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

  • @hellocartoons1735
    @hellocartoons1735 2 роки тому +2

    You must drop table

  • @upskillsql
    @upskillsql 2 роки тому

    How to find non matching records from two tables: ua-cam.com/video/j9HL_2NIfcE/v-deo.html

  • @goldenorchid2453
    @goldenorchid2453 2 роки тому +2

    The interview is about basic sql command

  • @hellocartoons1735
    @hellocartoons1735 2 роки тому

    Implicit cursors and explicit cursors

  • @vishalsaxena5081
    @vishalsaxena5081 2 роки тому +4

    mera bhi kra do tcs m interview

  • @akashkadam6874
    @akashkadam6874 2 роки тому +2

    Where is implementation

  • @rangraopawar764
    @rangraopawar764 2 роки тому +4

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

  • @saroj.mehta.
    @saroj.mehta. Рік тому

    Can anyone help me for a sql unique project ?? It will be a great help