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.
我有一个包含 750 万个条目的表,在导入一些数据时,一些列中断搞砸了,一列的第一个数字最终卡在了前一列的末尾。
例如,在一行上它应该说ELWS=123.44and t2=17.00,而不是读入ELWS=123.441and t2=7.00。
ELWS=123.44
t2=17.00
ELWS=123.441
t2=7.00
这只发生在少数几个地方。
有什么方法可以搜索以ELWS小数点后 3 位结尾的条目吗?此外,所有字段都是双重类型。
ELWS
SELECT * FROM someTable WHERE (ELWS * 1000) % 10 != 0
SQLFiddle在这里