• <legend id='qSNtq'><style id='qSNtq'><dir id='qSNtq'><q id='qSNtq'></q></dir></style></legend>

          <bdo id='qSNtq'></bdo><ul id='qSNtq'></ul>

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

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

        声明&amp;在 Select 语句中设置变量

        Declaring amp; Setting Variables in a Select Statement(声明amp;在 Select 语句中设置变量)
        <legend id='JXwQG'><style id='JXwQG'><dir id='JXwQG'><q id='JXwQG'></q></dir></style></legend>
          <tbody id='JXwQG'></tbody>
        1. <small id='JXwQG'></small><noframes id='JXwQG'>

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

            • <bdo id='JXwQG'></bdo><ul id='JXwQG'></ul>
                • 本文介绍了声明&amp;在 Select 语句中设置变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试编写一个简单的查询,在其中声明一些变量,然后在 Oracle 的选择语句中使用它们.我之前在 SQL Server 中已经能够做到这一点:

                  I'm attempting to write a simple query where I declare some variables and then use them in a select statement in Oracle. I've been able to do this before in SQL Server with the following:

                  DECLARE @date1   DATETIME
                  SET @date1 = '03-AUG-2010'
                  
                  SELECT U.VisualID
                  FROM Usage u WITH(NOLOCK)
                  WHERE U.UseTime > @Date1
                  

                  从我所做的搜索来看,您似乎无法在 Select 语句中声明和设置这样的变量.这是正确的还是我在发什么信息?

                  From the searching I've done it appears you can not declare and set variables like this in Select statements. Is this right or am I mssing something?

                  推荐答案

                  从我所做的搜索来看,您不能在 Select 语句中声明和设置这样的变量.这是正确的还是我遗漏了什么?

                  在 Oracle PL/SQL 和 SQL 中是两种独立的语言,具有两个独立的引擎.您可以在 PL/SQL 中嵌入 SQL DML,这将为您提供变量.比如下面的匿名PL/SQL块.注意最后的 / 不是 PL/SQL 的一部分,而是告诉 SQL*Plus 发送前面的块.

                  Within Oracle PL/SQL and SQL are two separate languages with two separate engines. You can embed SQL DML within PL/SQL, and that will get you variables. Such as the following anonymous PL/SQL block. Note the / at the end is not part of PL/SQL, but tells SQL*Plus to send the preceding block.

                  declare 
                      v_Date1 date := to_date('03-AUG-2010', 'DD-Mon-YYYY');
                      v_Count number;
                  begin
                      select count(*) into v_Count
                      from Usage
                      where UseTime > v_Date1;
                      dbms_output.put_line(v_Count);
                  end;
                  /
                  

                  问题是与您的 T-SQL 代码等效的块将不起作用:

                  The problem is that a block that is equivalent to your T-SQL code will not work:

                  SQL> declare 
                    2      v_Date1 date := to_date('03-AUG-2010', 'DD-Mon-YYYY');
                    3  begin
                    4      select VisualId
                    5      from Usage
                    6      where UseTime > v_Date1;
                    7  end;
                    8  /
                      select VisualId
                      *
                  ERROR at line 4:
                  ORA-06550: line 4, column 5:
                  PLS-00428: an INTO clause is expected in this SELECT statement
                  

                  要将查询的结果传递出 PL/SQL,无论是匿名块、存储过程还是存储函数,都必须声明、打开游标,然后将其返回给调用程序.(超出了回答这个问题的范围.请参阅获取oracle存储过程的结果集)

                  To pass the results of a query out of an PL/SQL, either an anonymous block, stored procedure or stored function, a cursor must be declared, opened and then returned to the calling program. (Beyond the scope of answering this question. see Get resultset from oracle stored procedure)

                  连接到数据库的客户端工具可能有自己的绑定变量.在 SQL*Plus 中:

                  The client tool that connects to the database may have it's own bind variables. In SQL*Plus:

                  SQL> -- SQL*Plus does not all date type in this context
                  SQL> -- So using varchar2 to hold text
                  SQL> variable v_Date1 varchar2(20)
                  SQL>
                  SQL> -- use PL/SQL to set the value of the bind variable
                  SQL> exec :v_Date1 := '02-Aug-2010';
                  
                  PL/SQL procedure successfully completed.
                  
                  SQL> -- Converting to a date, since the variable is not yet a date.
                  SQL> -- Note the use of colon, this tells SQL*Plus that v_Date1
                  SQL> -- is a bind variable.
                  SQL> select VisualId
                    2  from Usage
                    3  where UseTime > to_char(:v_Date1, 'DD-Mon-YYYY');
                  
                  no rows selected
                  

                  注意以上是在 SQLPlus 中,可能(可能不会)在 Toad PL/SQL 开发人员等中工作.以变量和 exec 开头的行是 SQLPlus 命令.它们不是 SQL 或 PL/SQL 命令.由于表为空,因此未选择任何行.

                  Note the above is in SQLPlus, may not (probably won't) work in Toad PL/SQL developer, etc. The lines starting with variable and exec are SQLPlus commands. They are not SQL or PL/SQL commands. No rows selected because the table is empty.

                  这篇关于声明&amp;在 Select 语句中设置变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
                  SQL query to group by day(按天分组的 SQL 查询)
                  What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                  MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                  MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                  Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
                • <legend id='uNpcf'><style id='uNpcf'><dir id='uNpcf'><q id='uNpcf'></q></dir></style></legend>

                  <tfoot id='uNpcf'></tfoot>
                      • <bdo id='uNpcf'></bdo><ul id='uNpcf'></ul>

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

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

                              <tbody id='uNpcf'></tbody>