[转]How do I use variables in Oracle SQL Developer?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[转]How do I use variables in Oracle SQL Developer?相关的知识,希望对你有一定的参考价值。

本文转自:http://stackoverflow.com/questions/5653423/how-do-i-use-variables-in-oracle-sql-developer

Below is an example of using variables in SQL Server 2000.

DECLARE @EmpIDVar INT

SET @EmpIDVar = 1234

SELECT *
FROM Employees
WHERE EmployeeID = @EmpIDVar

I want to do the exact same thing in Oracle using SQL Developer without additional complexity.  It seems like a very simple thing to do, but I can‘t find a simple solution.  How can I do it?

 

 

You can read up elsewhere on substitution variables; they‘re quite handy in SQL Developer.  But I have fits trying to use bind variables in SQL Developer.  This is what I do:

SET SERVEROUTPUT ON
declare
  v_testnum number;
  v_teststring varchar2(1000);

begin
   v_testnum := 2;
   DBMS_OUTPUT.put_line(‘v_testnum is now ‘ || v_testnum);

   select 36,‘hello world‘
   INTO v_testnum, v_teststring
   from dual;

   DBMS_OUTPUT.put_line(‘v_testnum is now ‘ || v_testnum);
   DBMS_OUTPUT.put_line(‘v_teststring is ‘ || v_teststring);
end;

SET SERVEROUTPUT ON makes it so text can be printed to the script output console.

 

以上是关于[转]How do I use variables in Oracle SQL Developer?的主要内容,如果未能解决你的问题,请参考以下文章

How do I use the API correctly

How do I force android WiFi Direct group owner to use 2.4 GHz instead of 5 GHz

How do I iterate over a Scala List (or more generally, a sequence) using theforeach method or for lo

How to keep Environment Variables when Using SUDO

How to use GITHUB to do source control

How to use GITHUB to do source control