0 votes
in Sql by

Which of the following commands is used to view the structure of a table in SQLite?

a) DESCRIBE

b) SELECT

c) SHOW

d) EXPLAIN

1 Answer

0 votes
by

Answer: a) DESCRIBE

Explanation: The DESCRIBE statement is used to view the structure of a table in SQLite. The syntax is as follows: DESCRIBE table_name;

...