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 command is used to create a new database in SQLite?
Home
Sql
Which command is used to create a new database in SQLite?
0
votes
asked
Jun 3
in
Sql
by
rajeshsharma
Which command is used to create a new database in SQLite?
a) CREATE
b) INSERT
c) SELECT
d) ATTACH
new
database
sqlite
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 3
by
rajeshsharma
Answer: d) ATTACH
Explanation: The ATTACH command is used to create a new database in SQLite. The syntax is as follows: ATTACH DATABASE ‘database_name’ AS ‘alias_name’;
...