Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 CDE 仪表板查询中使用我们的 put 参数编写程序 mysql,这样是 corect 吗?
if ${colum}=1 select ordernumber,productcode from orderfact else select ordernumber,productcode,priceeach,totalprice from orderfact
${colum} 是我的参数
不。CDA 中的查询只是一个 SQL 查询,可以参数化。
相反,您可以这样做:
select ordernumber, productcode, case when colum=1 then null else priceeach end
ETC..
尽管如此,这是一件很奇怪的事情。你能解释一下你的用例吗?