From b4868b71b3f74de525d5d60e6900670c60279b94 Mon Sep 17 00:00:00 2001 From: Sarkis Kovlekjian <83559262+kenshanta@users.noreply.github.com> Date: Fri, 23 Aug 2024 13:13:46 +0200 Subject: [PATCH] SQL roadmap drop table keywoard highlight (#6759) highlight - by transforming to bold - words that are crucial to be stressed on --- .../roadmaps/sql/content/drop-table@YzJ6QmY2arMfRzMAPaI0T.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/sql/content/drop-table@YzJ6QmY2arMfRzMAPaI0T.md b/src/data/roadmaps/sql/content/drop-table@YzJ6QmY2arMfRzMAPaI0T.md index 571bf834d..a066a7fb0 100644 --- a/src/data/roadmaps/sql/content/drop-table@YzJ6QmY2arMfRzMAPaI0T.md +++ b/src/data/roadmaps/sql/content/drop-table@YzJ6QmY2arMfRzMAPaI0T.md @@ -1,9 +1,9 @@ # Drop Table -The `DROP TABLE` statement is a Data Definition Language (DDL) operation that is used to completely remove a table from the database. This operation deletes the table structure along with all the data in it, effectively removing the table from the database system. +The `DROP TABLE` statement is a Data Definition Language (DDL) operation that is used to **completely remove** a table from the database. This operation deletes the table structure along with **all the data in** it, effectively removing the table from the database system. When you execute the `DROP TABLE` statement, it eliminates both the table and its data, as well as any associated indexes, constraints, and triggers. Unlike the `TRUNCATE TABLE` statement, which only removes data but keeps the table structure, `DROP TABLE` removes everything associated with the table. Learn more from the following resources: -- [@article@DROP TABLE](https://www.w3schools.com/sql/sql_drop_table.asp) \ No newline at end of file +- [@article@DROP TABLE](https://www.w3schools.com/sql/sql_drop_table.asp)