• <tfoot id='C2rVE'></tfoot>

      1. <legend id='C2rVE'><style id='C2rVE'><dir id='C2rVE'><q id='C2rVE'></q></dir></style></legend>
        • <bdo id='C2rVE'></bdo><ul id='C2rVE'></ul>

        <small id='C2rVE'></small><noframes id='C2rVE'>

      2. <i id='C2rVE'><tr id='C2rVE'><dt id='C2rVE'><q id='C2rVE'><span id='C2rVE'><b id='C2rVE'><form id='C2rVE'><ins id='C2rVE'></ins><ul id='C2rVE'></ul><sub id='C2rVE'></sub></form><legend id='C2rVE'></legend><bdo id='C2rVE'><pre id='C2rVE'><center id='C2rVE'></center></pre></bdo></b><th id='C2rVE'></th></span></q></dt></tr></i><div id='C2rVE'><tfoot id='C2rVE'></tfoot><dl id='C2rVE'><fieldset id='C2rVE'></fieldset></dl></div>

        Oracle中如何声明和显示变量

        How to declare and display a variable in Oracle(Oracle中如何声明和显示变量)

        1. <small id='ucK0B'></small><noframes id='ucK0B'>

          <legend id='ucK0B'><style id='ucK0B'><dir id='ucK0B'><q id='ucK0B'></q></dir></style></legend>

              <bdo id='ucK0B'></bdo><ul id='ucK0B'></ul>
              • <i id='ucK0B'><tr id='ucK0B'><dt id='ucK0B'><q id='ucK0B'><span id='ucK0B'><b id='ucK0B'><form id='ucK0B'><ins id='ucK0B'></ins><ul id='ucK0B'></ul><sub id='ucK0B'></sub></form><legend id='ucK0B'></legend><bdo id='ucK0B'><pre id='ucK0B'><center id='ucK0B'></center></pre></bdo></b><th id='ucK0B'></th></span></q></dt></tr></i><div id='ucK0B'><tfoot id='ucK0B'></tfoot><dl id='ucK0B'><fieldset id='ucK0B'></fieldset></dl></div>
                <tfoot id='ucK0B'></tfoot>
                  <tbody id='ucK0B'></tbody>

                • 本文介绍了Oracle中如何声明和显示变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想在 Oracle 中声明并显示一个变量.

                  I would like to declare and display a variable in Oracle.

                  在 T-SQL 中我会做这样的事情

                  In T-SQL I would do something like this

                  DECLARE @A VARCHAR(10) --Declares @A
                  SELECT @A = '12' --Assigns @A
                  SELECT @A --Displays @A
                  

                  如何在 Oracle 中执行此操作.

                  How can I do this in Oracle.

                  推荐答案

                  如果你在谈论 PL/SQL,你应该把它放在一个匿名块中.

                  If you're talking about PL/SQL, you should put it in an anonymous block.

                  DECLARE
                      v_text VARCHAR2(10); -- declare
                  BEGIN
                      v_text := 'Hello';  --assign
                      dbms_output.Put_line(v_text); --display
                  END; 
                  

                  这篇关于Oracle中如何声明和显示变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to redirect the output of DBMS_OUTPUT.PUT_LINE to a file?(如何将 DBMS_OUTPUT.PUT_LINE 的输出重定向到文件?)
                  How do I get column datatype in Oracle with PL-SQL with low privileges?(如何使用低权限的 PL-SQL 在 Oracle 中获取列数据类型?)
                  Get a list of all functions and procedures in an Oracle database(获取 Oracle 数据库中所有函数和过程的列表)
                  Why cannot I create triggers on objects owned by SYS?(为什么我不能在 SYS 拥有的对象上创建触发器?)
                  Returning result even for elements in IN list that don#39;t exist in table(即使对于表中不存在的 IN 列表中的元素也返回结果)
                  Reset Sequence in oracle 11g(oracle 11g 中的重置序列)

                  • <small id='9wk18'></small><noframes id='9wk18'>

                  • <legend id='9wk18'><style id='9wk18'><dir id='9wk18'><q id='9wk18'></q></dir></style></legend>

                          <tbody id='9wk18'></tbody>
                          <bdo id='9wk18'></bdo><ul id='9wk18'></ul>
                          <i id='9wk18'><tr id='9wk18'><dt id='9wk18'><q id='9wk18'><span id='9wk18'><b id='9wk18'><form id='9wk18'><ins id='9wk18'></ins><ul id='9wk18'></ul><sub id='9wk18'></sub></form><legend id='9wk18'></legend><bdo id='9wk18'><pre id='9wk18'><center id='9wk18'></center></pre></bdo></b><th id='9wk18'></th></span></q></dt></tr></i><div id='9wk18'><tfoot id='9wk18'></tfoot><dl id='9wk18'><fieldset id='9wk18'></fieldset></dl></div>
                          <tfoot id='9wk18'></tfoot>