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.
我正在更新清除脚本以删除所有行或单行,因此这将由一个名为 DEVICE 的变量控制,所以问题是我可以使用 (*) 作为变量名吗?DEVICE 可能由*(全部)或12.3.4.5(单个设备)组成。
*
12.3.4.5
DELETE L from LogTable L WHERE L.logTime < @cutoffTime AND L.deviceAddress = "${DEVICE}";
问题是我可以使用 (*) 作为变量名吗? DEVICE=* (all) or DEVICE=12.3.4.5 (single)
问题是我可以使用 (*) 作为变量名吗?
DEVICE=* (all) or DEVICE=12.3.4.5 (single)
你的意思是:我可以*用作变量值吗?
您可以,并且您在示例中正确引用了扩展。