Login
Remember
Register
Ask a Question
Which of the following is not a valid SQLite data type?
0
votes
asked
Jun 3, 2024
in
Sql
by
rajeshsharma
Which of the following is not a valid SQLite data type?
a) BOOLEAN
b) BLOB
c) DATE
d) DOUBLE
valid
sqlite
data
type
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 3, 2024
by
rajeshsharma
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.
...