SQL DELETE Statement
SQL DELETE statement is used to delete existing records in a table.The DELETE statement removes one or more records from the table. Syntax DELETE FROM tablename WHERE (condition); Example Let’s take a table, named “students“. Id Name Country 1 Krishna India 2 Jacky Us 3 Tom Mexico 4 Robin Australia SQL DELETE WHERE DELETE FROM students WHERE ID = 2; The following query deletes the table…
View On WordPress










