0 votes
in Sql by

Which of the following is true about SQLite data types?

a) SQLite supports several built-in data types, including INTEGER, REAL, TEXT, and BLOB.

b) The data type of a column is specified when the table is created.

c) The data type of a column can be changed using the ALTER TABLE statement.

d) All of the above.

1 Answer

0 votes
by

Answer: d) All of the above.

Explanation: SQLite supports several built-in data types, including INTEGER, REAL, TEXT, and BLOB. The data type of a column is specified when the table is created, and it can be changed using the ALTER TABLE statement.

...