Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MySQLのTRUNCATE関数に似たものは SQLite に存在しますか?
SELECT TRUNCATE(1.999,1); # 1.9
int に変換してから戻すことで、これを数値的に行うことができます。
select cast((val * 10) as int) / 10.0
round()と減算を使用してこれを行うことができます。
round()
select round(val - 0.1/2, 1)
または、別の回答が示唆するように、文字列に変換できます。
整数を処理するには:
SELECT substr(100 * 1.0, 1, instr(100 * 1.0, '.') + 1);