如何在mysql存储过程中组合行?

时间:2018-02-28 02:49:42

标签: mysql stored-procedures

就像这两行一样,我希望它们存储在变量中并将它们组合在一起。有可能吗?

我还没有尝试过任何东西,因为我还没有理解mysql函数。

enter image description here

enter image description here

预期结果:

<head>
    <!-- Maybe use some method to import the file here, or load it async i the body below -->

</head>

<body>
    <div id='test'>loading</div>

    <script>
        let a = new KnobControl(document.getElementById('test'))
    </script>

</body>

另一个快速的问题是,有没有办法在mysql声明中存储数组?

1 个答案:

答案 0 :(得分:1)

我已经体验过mysql存储过程。在mysql过程中声明一个数组变量是不可能的。你必须做的是使用以下任何一个:

  
      
  • CREATE TABLE
  •   
  • CREATE TEMPORARY
  •   
  • 创建视图
  •   

尝试并研究这些关键字,然后决定使用哪一个,比较哪一个最快,更方便您的情况。