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 中,如果我想做一个简单的查询:
select * from testtable where id = 192.1111
我只想选择最多 2 个小数位,我该怎么做?
结论应该是测试表应该选择 192.1111 和 192.1133 等值
请帮忙
提前致谢
要返回与前 2 个小数点匹配的所有结果,请尝试使用LIKE:
LIKE
SELECT * FROM testtable WHERE id like '192.11%'
这是小提琴。
祝你好运。