I'm new to SQLite SQL so please can someone help explain why this SQL:
select 1 + 1 as two, typeof(1) as onetype, typeof(1 + 1) as twotype
from t_object
limit 1
returns 11, integer, text
Is there a very different approach to standard arithmetic in this database?