douweicheng5532 2011-06-22 17:05
浏览 340
已采纳

PHP PDO获取所有表

So I know with a standard mysql call we can do mysql_list_tables , however is there an equivalent while using PDO? If so, does this return an array? Thanks!

  • 写回答

4条回答 默认 最新

  • dongqian8265 2011-06-22 17:07
    关注

    Execute the query with PDO::query():

    SHOW TABLES;
    

    If you fetch an associative array, the name of the column will be:

    Tables_in_databasename
    

    Note: this will list both tables and views. If you must get only tables, use this instead:

    SELECT 
      TABLE_NAME
    FROM information_schema.TABLES 
    WHERE
      TABLE_TYPE='BASE TABLE'
      AND TABLE_SCHEMA='yourdatabasename';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 Stata 面板数据模型选择
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用