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