이런 것이 가능하다: select '123'+1; -- 124 select '123'+'1'; -- 124 select 123 || 1; -- 1231 Datatypes In SQLite Datatypes In SQLite 1. Datatypes In SQLite Most SQL database engines (every SQL database engine other than SQLite, as far as we know) uses static, rigid typing. With static typing, the datatype of a value is determined by its container - the particular column in which the val sqlite.org 심지어 a..