sql - Truncate function for SQLite -
does there exist sqlite similar truncate function mysql?
select truncate(1.999,1); # 1.9
there no built-in function directly. however, can treat number string, search decimal separator, , count characters that:
select substr(1.999, 1, instr(1.999, '.') + 1);
(this not work integers.)
Comments
Post a Comment