Back to Browse

11. DELETE VS DROP VS TRUNCATE IN SQL | SQL TUTORIAL

2.2K views
Oct 20, 2024
5:54

DELETE vs DROP vs TRUNCATE in SQL: What's the Difference? In this video, understand the key differences between DELETE, DROP, and TRUNCATE commands in SQL! ๐Ÿ—‘๏ธโš ๏ธ โœ… DELETE: Removes specific rows from a table based on conditions. You can control what to delete using the WHERE clause. โœ… DROP: Removes the entire table or database, including all its data and structure. โœ… TRUNCATE: Quickly removes all rows from a table but keeps the structure intact for future use. Want more similar videos- hit like, comment, share and subscribe โค๏ธDo Like, Share and Comment โค๏ธ โค๏ธ Like Aim 5000 likes! โค๏ธ โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž– Please like & share the video. script CREATE TABLE EMPL ( ID INT, NAME VARCHAR (17), SALARY INT, LOCATION VARCHAR(17), DEPT VARCHAR(17) ) INSERT INTO EMPL VALUES (1,'MANISH', 900000,'INDIA','SDE') INSERT INTO EMPL VALUES (2,'RANI', 1000000,'INDIA','SDE2') INSERT INTO EMPL (ID ,NAME,SALARY,DEPT) VALUES (3,'RAJ', 700000,'SALES') INSERT INTO EMPL(ID ,NAME,SALARY,DEPT) VALUES (4,'RAHUL', 600000,'HR') โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž– AWS DATA ENGINEER : https://www.youtube.com/playlist?list=PLOlK8ytA0MghpdMjb0m9zu1v9s_qbRP0q Azure data factory : https://youtube.com/playlist?list=PLOlK8ytA0MgguN5XidtQXbILxwCdJCUJE&si=iEICXHP80zGchUYh Azure data engineer playlist : https://youtube.com/playlist?list=PLOlK8ytA0MghBrzu0i6WlTBdoO1WdwV_e SQL PLAYLIST : https://www.youtube.com/playlist?list=PLOlK8ytA0MggGXIKmbfZ-_Xqcos3JKdV- PYSPARK PLAYLIST - https://www.youtube.com/playlist?list=PLOlK8ytA0MgjvOpd-088NRU_vTYw_aryH โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž– ๐Ÿ“ฃWant to connect with me? Check out these links:๐Ÿ“ฃ Join telegram to discuss https://t.me/+Cb98j1_fnZs3OTA1 โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž– what we have covered in this video: โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž– Hope you liked this video and learned something new :) See you in next video, until then Bye-Bye! โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–

Download

0 formats

No download links available.

11. DELETE VS DROP VS TRUNCATE IN SQL | SQL TUTORIAL | NatokHD