select * from 表 where cast(float字段 as varchar(100)) like '%关键字%'
说白了,就是要把你的字段先转换为字符类型,才能进行模糊查询
select * from 表名 where 字段名 like '%模糊关键字%'