ML
Size: a a a
IS
IS
IS
ML
select fio
, date_of_birth
, case date_of_birth
when (strftime('%Y', 'now') - strftime('%Y', date_of_birth)) > 18 then '+'
else '-'
end isAdult
from clients
;
К
В
К