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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -