0 votes
in Sql by

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

a) INT

b) FLOAT

c) DECIMAL

d) BOOLEAN

1 Answer

0 votes
by
Answer: c) DECIMAL

Explanation: DECIMAL is not a valid data type in SQLite. The valid data types in SQLite are INTEGER, REAL, TEXT, and BLOB.
...