新文章 网摘 文章 随笔 日记

在Oracle Developer中使用参数直接查询

with param AS(

SELECT 1234 empid
FROM dual)
SELECT *
FROM Employees, param
WHERE EmployeeID = param.empid;

https://stackoverflow.com/questions/5653423/how-do-i-use-variables-in-oracle-sql-developer

 

posted @ 2020-09-21 15:58  岭南春  阅读(80)  评论(0)    收藏  举报