Q&A
Ask and answer questions to make information more available to wider audiences.
Jaxon Larx @jaxonlarx   19, Jul 2023 12:00 AM
DELETE statement
What is the use of DELETE statement in MariaDB?
answers 2
 
Answer 1
Aiden Barti @aidenbarti   09, Aug 2023 03:07 PM
Syntax:

DELETE FROM table      
[WHERE conditions]      
[ORDER BY expression [ ASC | DESC ]]      
[LIMIT number_rows];    
 
Answer 2
Aiden Barti @aidenbarti   09, Aug 2023 03:07 PM
The MariaDB DELETE statement is used to delete one or more records from the table in the database. It can be used to delete records from the table as well the whole table if you use it without WHERE condition.