在DB2-LUW SQL中,我可以编写一个查询来做到这一点:
select * from customers
&input
用户运行时,系统会提示他们输入内容,并可以输入:
where name = 'Bill'
实际执行的查询将是:
select * from customers
where name = 'Bill'
我正在尝试寻找一种方法来更改&input
的值以根据更多基本用户输入来更改查询-因此,他们无需键入where name = 'Bill'
。
例如,系统可能会提示用户输入YesBill
或NoBill
,并根据他们输入的内容来设置&input
的值,并执行查询要么:
select * from customers
where name = 'Bill'
或
select * from customers
where name <> 'Bill'
该示例没有意义,我主要是想知道是否有可能在不强制用户键入SQL代码的情况下更改&input
的值。
希望如此。感谢您的帮助!