比如说show procedure status的内容如何存为一张表呢?

解决方案 »

  1.   

    为啥哩?虽说这个show的内容可以在information_schema里找到可想单独保存个表不行吗?
      

  2.   

    show 命令本身无法直接保存,但你可以直接从 information_schema 中直接 select 出然后这个 select * from ..的结果可以保存为表。
      

  3.   

    不行。
    CREATE TABLE TT AS  SELECT * FROM information_schema WHERE ....
      

  4.   

    select * from information_schema.ROUTINES;
      

  5.   

    不行的可以用information_schema
    CREATE TABLE tt
    SELECT * FROM information_schema
    WHERE...