我尝试在DBeaver绑定变量中存储一些数据,如下所示:
--test @set test = good --testQ @set testQ = select date from table where id = 1;
我需要存储查询结果,而不是查询语句,有人知道这是可能的?
zbsbpyhn1#
试试这个:
@set testQ = (select date from table where id = 1) select * from anotherTable where date = :testQ;
重要的是不要使用;在变量声明中,因为会重复命令的终止
1条答案
按热度按时间zbsbpyhn1#
试试这个:
重要的是不要使用;在变量声明中,因为会重复命令的终止