0
var client = new require("mysql-pool").MySQLPool({...});

client.query( 
   "SET @counter := 0, @type := 'asd'; select @counter, @type"   ,

    function (error, result, fields) {
       if (error) {
           throw error;
       }else{
          cb(result, fields);
       }
    });

( 

查询在工作台或dbForge中工作得很好,mysql-pool也可以工作,但只有没有@variable_name

4

1 回答 1

0

也许是这样?

"SELECT @counter := 0, @type := 'asd'"

但是 TYPE 可以是 RESERVED 名称,所以考虑使用 sth。否则即。ENTITY_TYPE

于 2013-09-06T11:55:11.613 回答