Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Which of the following statements is used to delete a table in SQLite?
Home
Sql
Which of the following statements is used to delete a table in SQLite?
0
votes
asked
Jun 3
in
Sql
by
rajeshsharma
Which of the following statements is used to delete a table in SQLite?
a) DROP
b) DELETE
c) TRUNCATE
d) REMOVE
delete
a
table
sqlite
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 3
by
rajeshsharma
Answer: a) DROP
Explanation: The DROP statement is used to delete a table in SQLite. The syntax is as follows: DROP TABLE table_name;
...