0 votes
in Sql by

Which of the following is not a valid data type in SQLite?

a) TEXT

b) INTEGER

c) FLOAT

d) DECIMAL

1 Answer

0 votes
by
Answer: d) DECIMAL

Explanation: SQLite does not have a DECIMAL data type. However, it does support a NUMERIC data type that can be used to store decimal values.
...