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 -

Socket.connect doesn't throw exception in Android -

iphone - How do I keep MDScrollView from truncating my row headers and making my cells look bad? -