MySQL:在视图内使用带参数的函数

时间:2016-12-21 16:18:05

标签: mysql sql

我想在视图中使用带参数的函数。该参数来自每行的选择。要解释我的问题,请看下面的简化示例:

my_function(id int):
    SET r = (select exists(select ... where key = id));
    return r;


my_view:
    select table.key as key, table.date as date, ...
    my_function(key) as fct_value
    FROM table

或者还有其他方法可以在视图中直接使用带有动态键(每行)的exists-Statement而无需其他功能吗?

0 个答案:

没有答案