我想实现一个功能,允许用户输入如下内容:
"select * from products where low(price);"
等于:
"select * from products where (price >=0) And (price <= 50);"
您是否知道任何对我有用的解决方案?我的第二个问题是我应该在应用程序结构的哪个位置进行转换?在应用程序代码中还是在数据库中?
我的应用程序是用 C# 编写的,并通过 ADO.NET 连接到 SQL Server 2008。
我会非常感谢任何提示、伪代码等。
提前致谢 !