string sql1 = "select price from dbo.eazy_farm where REPLACE(title,' ','')='" + cainame + "' and company_id='" + company_id.ToString() + "'";
replace第一个参数为数据库字段名
第二个参数为被替换的字符
第三个参数为需要替换成的字符
上面sql语句的意思是需要把title中的所有空格去掉然后和cainame比较
本文共 279 字,大约阅读时间需要 1 分钟。
string sql1 = "select price from dbo.eazy_farm where REPLACE(title,' ','')='" + cainame + "' and company_id='" + company_id.ToString() + "'";
replace第一个参数为数据库字段名
第二个参数为被替换的字符
第三个参数为需要替换成的字符
上面sql语句的意思是需要把title中的所有空格去掉然后和cainame比较
转载于:https://www.cnblogs.com/yabisi/p/6046175.html