看看在SQL捣鼓这个简单的查询: http://sqlfiddle.com/#!2/c1eb6/1 。 这是一个超级简单的更新查询,为什么会产生误差? 我不知道是否可以在该网站上的错误吗?
构建模式:
create table your_table (some_column varchar(50));
insert into your_table set some_column = '30# 11';
insert into your_table set some_column = '30# 12.00';
insert into your_table set some_column = '30# 13.5';
insert into your_table set some_column = 'abdfs';
insert into your_table set some_column = '0000000';
查询:
UPDATE your_table
SET some_column = 1;