TCS SQL/ PLSQL Real Interview BY TCS Team TCS digital SQL interview questions SQL TCS Ninja

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

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

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

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

  • @Rachanacheekurumilli-q4w
    @Rachanacheekurumilli-q4w 9 месяцев назад +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.😊

  • @anantthakur1630
    @anantthakur1630 2 года назад +63

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

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

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

  • @vasusharma2394
    @vasusharma2394 2 года назад +252

    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 года назад +89

      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

  • @sarojrajah
    @sarojrajah 2 года назад +4

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

  • @viratchintu_18
    @viratchintu_18 2 года назад +15

    Really helpful 👍
    Thanks for sharing 🤝

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

  • @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 RUclips/Google just by searching

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

  • @Amar27_Feb
    @Amar27_Feb 2 года назад +16

    Good initiative .. Very Helpful for Job seekers ..

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

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

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

  • @Shivamvlogs_350
    @Shivamvlogs_350 2 года назад +8

    Thanks for the video 😀

  • @onelove177
    @onelove177 2 года назад +18

    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?

  • @aryaarjun_1138
    @aryaarjun_1138 2 года назад +19

    helpful video ☺️

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

    thanks bro nice video

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

  • @mehtabhussain5363
    @mehtabhussain5363 2 года назад +71

    As a fresher , he has good knowledge for TCS

  • @hellocartoons1735
    @hellocartoons1735 2 года назад +11

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

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

  • @roysourav1991
    @roysourav1991 2 года назад +22

    @14:19 the answer shocked Mr. Srinivas

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

    very good vedio helpful.

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

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

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

    Keep in the loop

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

  • @kumareshview
    @kumareshview 2 года назад +9

    Delete maintains transaction logs but Truncate can't.

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

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

  • @xploreindiawithsandhya5287
    @xploreindiawithsandhya5287 2 года назад +21

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

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

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

  • @attaullahkhan2504
    @attaullahkhan2504 2 года назад +18

    Is he fresher?
    Look like fresher

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

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

  • @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 11 месяцев назад

      Bhaiya kannad me bhi de sakte ho 😅

  • @atulrokade1031
    @atulrokade1031 2 года назад +6

    Alter =DML command 6:50😂

  • @manikandanr1682
    @manikandanr1682 Год назад +2

    How to apply TCS fresher Oracle developer job

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

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

    thank you panel for making out 0:42

  • @sandeeplvrs
    @sandeeplvrs 2 года назад +27

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

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

    finished watching

  • @Cnu185
    @Cnu185 2 года назад +9

    How to apply for this role?

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

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

    Procedure is numerical method functions is varchar

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

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

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

  • @geetikachauhan2587
    @geetikachauhan2587 2 года назад +2

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

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

  • @SP_Investments
    @SP_Investments 2 года назад +2

    The alter table is DDL comand in sql

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

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

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

    Good 👍

  • @tech_boy_4166
    @tech_boy_4166 2 года назад +6

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

  • @bindu704
    @bindu704 Год назад +1

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

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

    Thanks

  • @anshuljain216
    @anshuljain216 Год назад +1

    Very nice interview questions 👌🏻

  • @himanish2006
    @himanish2006 2 года назад +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

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

    good interview

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

  • @sourjadhar9332
    @sourjadhar9332 Год назад +1

    We can use sp.rename to rename a column

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

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

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

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

  • @dolonghanty3854
    @dolonghanty3854 2 года назад +2

    Make a vedio of. Net developer

  • @nazishtabassum2573
    @nazishtabassum2573 2 года назад +6

    Please make a video on Oracle SOA Developer

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

  • @ProgrammingTipsNTricksTelugu
    @ProgrammingTipsNTricksTelugu 2 года назад +10

    Man this interview is disaster

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

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

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

  • @veeraveera4617
    @veeraveera4617 2 года назад +14

    Its too much 51min interview aah...OMG

  • @adhirajmajumder
    @adhirajmajumder 2 года назад +2

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

  • @killerdroid99
    @killerdroid99 2 года назад +4

    That's why I use prisma for database interaction

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

    35:30

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

  • @IWouldLikeToEast
    @IWouldLikeToEast 14 дней назад

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

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

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

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

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

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

    All hierarchy answers through based on your RUclips video may be zigzagged

  • @akashkadam6874
    @akashkadam6874 2 года назад +2

    Where is implementation

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

    Sir can I get good job after the bcs

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

    SQL plus means user practice compiler...

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

    Useful..how much experience he hace?

  • @swapnildambhare
    @swapnildambhare 2 года назад +2

    My Question is that he is selected or not?

  • @vishalsaxena5081
    @vishalsaxena5081 2 года назад +4

    mera bhi kra do tcs m interview

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

    can commerce make career in sql queries

  • @gamingwithlegend3183
    @gamingwithlegend3183 2 года назад +2

    Truncate command delete Identity but not delete command.

  • @SaiBaba-re4rj
    @SaiBaba-re4rj 2 года назад +2

    Is it tcs digital or codevita interview?

  • @saroj.mehta.
    @saroj.mehta. Год назад

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

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

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

  • @sourjadhar9332
    @sourjadhar9332 Год назад +1

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

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

    basics should be brushed up well here ...

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

    Update
    tablename
    Set
    Salary=1000
    Where
    catageroy=departmentname

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

    Select from functions. Method