使用多选下拉菜单
我有多选下拉列表,用户可以在其中选择多个选项,现在如何传递此多选选项来选择查询。
代码
从表中选择数字(get_number(('('1','2','3','4','5')','7','8' )));
其中 1、2、3、4 和 5
是从多选下拉框中选择的多选选项。现在,在 get_number 函数中,我传递 count_number、role_number 和 test_id。 Count_number代表用户选择的多选选项。所以我的问题是如何使用用户在 get_number 函数中输入的多选值,不确定是否可能,但我是否需要在 get_number 函数中将 count_number 定义为数组?
I have multi-select drop down list where in user can select multiple options, now how can I pass this multi-select options to select query.
Code
select number from table(get_number(('('1','2','3','4','5')','7','8')));
where 1, 2, 3, 4 and 5
are the multi-select options selected from multiselect dropdown box. Now in get_number function I am passing count_number, role_number and test_id. Count_number represents the multi-select options which user select. So my question is how can I consume multi-select values which user entered in my get_number function, not sure if possible but do I need to define count_number as array in get_number function ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚你想要实现什么目标。下面是使用数组作为参数和输出的函数示例。
it is not clear what you're trying to achieve. Below is an example of a function that uses arrays as parameter and output.