Login
Remember
Register
Ask a Question
Which of the following is NOT a valid data type in SQLite?
0
votes
asked
Jun 10, 2024
in
Sql
by
SakshiSharma
Which of the following is NOT a valid data type in SQLite?
a) INT
b) FLOAT
c) DECIMAL
d) BOOLEAN
sqllite
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 10, 2024
by
SakshiSharma
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.
...