내가 물어본 질문은 이거임
Can sqlite integer data type store number 10000000000000000?

이 숫자는 1경임


그리고 내가 받은 답변은 이거임

No, SQLite's INTEGER data type cannot store the number 10000000000000000 because it exceeds the maximum value that can be stored in an 8-byte signed integer.

The maximum value for an 8-byte signed integer in SQLite is 9223372036854775807. The number 10000000000000000 is larger than this maximum value.

If you need to store such large numbers, you should consider using the TEXT data type to store them as strings, or you can use a different database system that supports larger integer types.