0 votes
in Sql by

Which command is used to create a new database in SQLite?

a) CREATE

b) INSERT

c) SELECT

d) ATTACH

1 Answer

0 votes
by
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’;
...