• <small id='ealoV'></small><noframes id='ealoV'>

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

      <legend id='ealoV'><style id='ealoV'><dir id='ealoV'><q id='ealoV'></q></dir></style></legend>
      <tfoot id='ealoV'></tfoot>

        用参数在mySql中创建一个过程

        Creating a procedure in mySql with parameters(用参数在mySql中创建一个过程)
        <legend id='QYRIt'><style id='QYRIt'><dir id='QYRIt'><q id='QYRIt'></q></dir></style></legend>
        • <bdo id='QYRIt'></bdo><ul id='QYRIt'></ul>

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

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

                • 本文介绍了用参数在mySql中创建一个过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试使用 mySQL 创建一个存储过程.此过程将验证用户名和密码.我目前正在运行 mySQL 5.0.32,因此应该可以创建过程.

                  I am trying to make a stored procedure using mySQL. This procedure will validate a username and a password. I'm currently running mySQL 5.0.32 so it should be possible to create procedures.

                  这是我使用过的代码.我得到的只是一个 SQL 语法错误.

                  Heres the code I've used. All I get is an SQL syntax error.

                     GO
                      CREATE PROCEDURE checkUser
                      (IN @brugernavn varchar(64)),IN @password varchar(64))
                      BEGIN
                      SELECT COUNT(*)  FROM bruger WHERE bruger.brugernavn=@brugernavn AND bruger.pass=@Password;
                      END;
                  

                  提前致谢

                  推荐答案

                  我现在想通了.这是正确答案

                  I figured it out now. Here's the correct answer

                  CREATE PROCEDURE checkUser 
                  (
                     brugernavn1 varchar(64),
                     password varchar(64)
                  ) 
                  BEGIN 
                     SELECT COUNT(*) FROM bruger 
                     WHERE bruger.brugernavn=brugernavn1 
                     AND bruger.pass=password; 
                  END; 
                  

                  @ 指向 mysql 中的全局变量.上面的语法是正确的.

                  @ points to a global var in mysql. The above syntax is correct.

                  这篇关于用参数在mySql中创建一个过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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 按组最频繁)
                  Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)
                  MySQL GROUP BY DateTime +/- 3 seconds(MySQL GROUP BY DateTime +/- 3 秒)
                  MySQL cumulative sum grouped by date(按日期分组的 MySQL 累计总和)
                      <bdo id='V84yf'></bdo><ul id='V84yf'></ul>
                      <legend id='V84yf'><style id='V84yf'><dir id='V84yf'><q id='V84yf'></q></dir></style></legend>

                          <tbody id='V84yf'></tbody>
                      1. <small id='V84yf'></small><noframes id='V84yf'>

                        <tfoot id='V84yf'></tfoot>

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