Login
Remember
Register
Ask a Question
SQL DELETE Statement
+1
vote
asked
Sep 9, 2019
in
Spark Sql
by
ivor2019
SQL
DELETE
Statement
#sql
#sql-syntax
#sql-select
#sql-query
#sql-database
#sql-reference
#sql-tutoial
#sql-programming
#sql-intro
#sql-commands
#sql-excesise
#sql-certificate
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 9, 2019
by
Rajiv_2019
The SQL DELETE Statement
The DELETE statement is used to delete existing records in a table.
DELETE Syntax
DELETE
FROM
table_name
WHERE
condition
;
...