0 By Praveen Macherla In Data Manipulation Language (DML)Posted October 18, 2016Deleting Data from Database TablesDelete Rows in a table The DELETE statement is used to delete rows in a table. SQL DELETE Syntax DELETE FROM table_name [WHERE condition] [ORDER BY column_name] [LIMIT row_count] The WHERE clause [...] READ MORE