0 votes
in Sql by

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

a) BOOLEAN

b) BLOB

c) DATE

d) DOUBLE

1 Answer

0 votes
by
Answer: a) BOOLEAN

Explanation: SQLite does not have a BOOLEAN data type. However, you can use the INTEGER data type to represent boolean values, where 0 represents false and 1 represents true.
...