SQL Stored Procedure - Run a SQL QueryHow can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerInserting multiple rows in a single SQL query?Insert results of a stored procedure into a temporary tableFunction vs. Stored Procedure in SQL ServerHow do I UPDATE from a SELECT in SQL Server?Create table using rows from another table as columnsSearch text in stored procedure in SQL ServerHow do I import an SQL file using the command line in MySQL?Combine data from multiple columns into a single column using Microsoft Access SQL

How far did Gandalf and the Balrog drop from the bridge in Moria?

How to Check all AD userers for "blank" password?

Why is statically linking glibc discouraged?

The cat exchanges places with a drawing of the cat

Do beef farmed pastures net remove carbon emissions?

What is a good class if we remove subclasses?

How to take the beginning and end parts of a list with simpler syntax?

What are these funnel-looking green things in my yard?

The cat ate your input again!

How do you deal with the emotions of not being the one to find the cause of a bug?

If "more guns less crime", how do gun advocates explain that the EU has less crime than the US?

A torrent of foreign terms

PhD advisor lost funding, need advice

Running code generated in realtime in JavaScript with eval()

What are those bumps on top of the Antonov-225?

How can God warn people of the upcoming rapture without disrupting society?

Update Office without opening an Office application

Super Duper Vdd stiffening required on 555 timer, what is the best way?

Can renaming a method preserve encapsulation?

Programmatically add log information in all renderings(controller, view) html

What is the difference between 王 and 皇?

Is this n-speak?

Why did IBM make public the PC BIOS source code?

Does fossil fuels use since 1990 account for half of all the fossil fuels used in history?



SQL Stored Procedure - Run a SQL Query


How can I prevent SQL injection in PHP?Add a column with a default value to an existing table in SQL ServerInserting multiple rows in a single SQL query?Insert results of a stored procedure into a temporary tableFunction vs. Stored Procedure in SQL ServerHow do I UPDATE from a SELECT in SQL Server?Create table using rows from another table as columnsSearch text in stored procedure in SQL ServerHow do I import an SQL file using the command line in MySQL?Combine data from multiple columns into a single column using Microsoft Access SQL






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Here is the way I am creating my stored procedure:



SET @SQL = 
(SELECT ddl_script FROM TABLENAME.versions where ID = 5)
;

USE TABLENAME;
DROP procedure IF EXISTS `ddl_stored_procedure`;

DELIMITER $$
CREATE PROCEDURE `ddl_stored_procedure` ()
BEGIN

PREPARE part1 FROM @SQL;
EXECUTE part1;
DEALLOCATE PREPARE part1;

END$$
DELIMITER ;


This part works fine and my stored procedure is created. Now I try to run my stored procedure with this line of code to test it:



CALL `DBNAME`.`ddl_stored_procedure`();


And I get the error message:



Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'USE `xxx_landing`; CREATE TABLE `TABLE1` ( `ROW1` varchar(1), `T' at line 1


The code that is running, is an SQL statement inside one of my databases as longtext and looks like this:



CREATE DATABASE `xxx_landing` /*!40100 DEFAULT CHARACTER SET utf8 */; 
USE `xxx_landing`;

CREATE TABLE `TABLE1` (
`ROW1` varchar(1),
`ROW2` varchar(20),
`ROW3` varchar(3)
)
ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `TABLE2` (
`ROW4` varchar(2),
`ROW5` varchar(10),
`ROW6` varchar(10),
`ROW7` varchar(10),
`ROW8` varchar(10),
`ROW9` varchar(50)
)
ENGINE=InnoDB DEFAULT CHARSET=utf8;


I do not know why the stored procedure fails to create the database, use it and create all tables. If I execute the SQL-Query manually there is no syntax error.
Can someone explain me what I am doing wrong?



Thanks in advance!










share|improve this question






























    1















    Here is the way I am creating my stored procedure:



    SET @SQL = 
    (SELECT ddl_script FROM TABLENAME.versions where ID = 5)
    ;

    USE TABLENAME;
    DROP procedure IF EXISTS `ddl_stored_procedure`;

    DELIMITER $$
    CREATE PROCEDURE `ddl_stored_procedure` ()
    BEGIN

    PREPARE part1 FROM @SQL;
    EXECUTE part1;
    DEALLOCATE PREPARE part1;

    END$$
    DELIMITER ;


    This part works fine and my stored procedure is created. Now I try to run my stored procedure with this line of code to test it:



    CALL `DBNAME`.`ddl_stored_procedure`();


    And I get the error message:



    Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'USE `xxx_landing`; CREATE TABLE `TABLE1` ( `ROW1` varchar(1), `T' at line 1


    The code that is running, is an SQL statement inside one of my databases as longtext and looks like this:



    CREATE DATABASE `xxx_landing` /*!40100 DEFAULT CHARACTER SET utf8 */; 
    USE `xxx_landing`;

    CREATE TABLE `TABLE1` (
    `ROW1` varchar(1),
    `ROW2` varchar(20),
    `ROW3` varchar(3)
    )
    ENGINE=InnoDB DEFAULT CHARSET=utf8;

    CREATE TABLE `TABLE2` (
    `ROW4` varchar(2),
    `ROW5` varchar(10),
    `ROW6` varchar(10),
    `ROW7` varchar(10),
    `ROW8` varchar(10),
    `ROW9` varchar(50)
    )
    ENGINE=InnoDB DEFAULT CHARSET=utf8;


    I do not know why the stored procedure fails to create the database, use it and create all tables. If I execute the SQL-Query manually there is no syntax error.
    Can someone explain me what I am doing wrong?



    Thanks in advance!










    share|improve this question


























      1












      1








      1








      Here is the way I am creating my stored procedure:



      SET @SQL = 
      (SELECT ddl_script FROM TABLENAME.versions where ID = 5)
      ;

      USE TABLENAME;
      DROP procedure IF EXISTS `ddl_stored_procedure`;

      DELIMITER $$
      CREATE PROCEDURE `ddl_stored_procedure` ()
      BEGIN

      PREPARE part1 FROM @SQL;
      EXECUTE part1;
      DEALLOCATE PREPARE part1;

      END$$
      DELIMITER ;


      This part works fine and my stored procedure is created. Now I try to run my stored procedure with this line of code to test it:



      CALL `DBNAME`.`ddl_stored_procedure`();


      And I get the error message:



      Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'USE `xxx_landing`; CREATE TABLE `TABLE1` ( `ROW1` varchar(1), `T' at line 1


      The code that is running, is an SQL statement inside one of my databases as longtext and looks like this:



      CREATE DATABASE `xxx_landing` /*!40100 DEFAULT CHARACTER SET utf8 */; 
      USE `xxx_landing`;

      CREATE TABLE `TABLE1` (
      `ROW1` varchar(1),
      `ROW2` varchar(20),
      `ROW3` varchar(3)
      )
      ENGINE=InnoDB DEFAULT CHARSET=utf8;

      CREATE TABLE `TABLE2` (
      `ROW4` varchar(2),
      `ROW5` varchar(10),
      `ROW6` varchar(10),
      `ROW7` varchar(10),
      `ROW8` varchar(10),
      `ROW9` varchar(50)
      )
      ENGINE=InnoDB DEFAULT CHARSET=utf8;


      I do not know why the stored procedure fails to create the database, use it and create all tables. If I execute the SQL-Query manually there is no syntax error.
      Can someone explain me what I am doing wrong?



      Thanks in advance!










      share|improve this question














      Here is the way I am creating my stored procedure:



      SET @SQL = 
      (SELECT ddl_script FROM TABLENAME.versions where ID = 5)
      ;

      USE TABLENAME;
      DROP procedure IF EXISTS `ddl_stored_procedure`;

      DELIMITER $$
      CREATE PROCEDURE `ddl_stored_procedure` ()
      BEGIN

      PREPARE part1 FROM @SQL;
      EXECUTE part1;
      DEALLOCATE PREPARE part1;

      END$$
      DELIMITER ;


      This part works fine and my stored procedure is created. Now I try to run my stored procedure with this line of code to test it:



      CALL `DBNAME`.`ddl_stored_procedure`();


      And I get the error message:



      Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'USE `xxx_landing`; CREATE TABLE `TABLE1` ( `ROW1` varchar(1), `T' at line 1


      The code that is running, is an SQL statement inside one of my databases as longtext and looks like this:



      CREATE DATABASE `xxx_landing` /*!40100 DEFAULT CHARACTER SET utf8 */; 
      USE `xxx_landing`;

      CREATE TABLE `TABLE1` (
      `ROW1` varchar(1),
      `ROW2` varchar(20),
      `ROW3` varchar(3)
      )
      ENGINE=InnoDB DEFAULT CHARSET=utf8;

      CREATE TABLE `TABLE2` (
      `ROW4` varchar(2),
      `ROW5` varchar(10),
      `ROW6` varchar(10),
      `ROW7` varchar(10),
      `ROW8` varchar(10),
      `ROW9` varchar(50)
      )
      ENGINE=InnoDB DEFAULT CHARSET=utf8;


      I do not know why the stored procedure fails to create the database, use it and create all tables. If I execute the SQL-Query manually there is no syntax error.
      Can someone explain me what I am doing wrong?



      Thanks in advance!







      mysql sql stored-procedures






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 10:20









      Christoph C.Christoph C.

      3711 gold badge10 silver badges31 bronze badges




      3711 gold badge10 silver badges31 bronze badges

























          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374828%2fsql-stored-procedure-run-a-sql-query%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374828%2fsql-stored-procedure-run-a-sql-query%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

          밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

          1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴