如何从mysql数据库中的所有表中找到sum(field1)

时间:2015-01-14 10:11:45

标签: mysql

我在卖表中尝试总价, 但是每月卖掉桌子

例如:

  1. sell_14_01
  2. sell_14_02
  3. sell_14_03
  4. ...
  5. sell_15_01
  6. 我尝试查找总价格所有卖表使用一个SQL查询

    我使用该查询找到所有tablename

    SELECT TABLE_NAME FROM information_schema.TABLES WHERE table_schema = 'mydb' and TABLE_NAME like 'sell_%'
    

    但我不能

    select sum(price) from (SELECT TABLE_NAME FROM information_schema.TABLES WHERE table_schema = 'mydb' and TABLE_NAME like 'sell_%')
    

    *****我不能使用php或其他编程语言,只能使用mysql查询

    你可以帮帮我吗

0 个答案:

没有答案