在plsql中使用&接收用户输入的值
select &输入值 from dual;
在dbeaver可以定义变量实现
声明变量
@set 变量名(startdate)='2021-08-02'
使用变量
select ${startdate} from dual