<tfoot id='E8jGN'></tfoot>

    1. <i id='E8jGN'><tr id='E8jGN'><dt id='E8jGN'><q id='E8jGN'><span id='E8jGN'><b id='E8jGN'><form id='E8jGN'><ins id='E8jGN'></ins><ul id='E8jGN'></ul><sub id='E8jGN'></sub></form><legend id='E8jGN'></legend><bdo id='E8jGN'><pre id='E8jGN'><center id='E8jGN'></center></pre></bdo></b><th id='E8jGN'></th></span></q></dt></tr></i><div id='E8jGN'><tfoot id='E8jGN'></tfoot><dl id='E8jGN'><fieldset id='E8jGN'></fieldset></dl></div>
    2. <legend id='E8jGN'><style id='E8jGN'><dir id='E8jGN'><q id='E8jGN'></q></dir></style></legend>

      <small id='E8jGN'></small><noframes id='E8jGN'>

      • <bdo id='E8jGN'></bdo><ul id='E8jGN'></ul>

      如何判断 MySQL 表的上次更新时间?

      时间:2023-08-18
    3. <small id='IoG07'></small><noframes id='IoG07'>

        <tbody id='IoG07'></tbody>
        • <legend id='IoG07'><style id='IoG07'><dir id='IoG07'><q id='IoG07'></q></dir></style></legend>
            <tfoot id='IoG07'></tfoot>

              <i id='IoG07'><tr id='IoG07'><dt id='IoG07'><q id='IoG07'><span id='IoG07'><b id='IoG07'><form id='IoG07'><ins id='IoG07'></ins><ul id='IoG07'></ul><sub id='IoG07'></sub></form><legend id='IoG07'></legend><bdo id='IoG07'><pre id='IoG07'><center id='IoG07'></center></pre></bdo></b><th id='IoG07'></th></span></q></dt></tr></i><div id='IoG07'><tfoot id='IoG07'></tfoot><dl id='IoG07'><fieldset id='IoG07'></fieldset></dl></div>

              • <bdo id='IoG07'></bdo><ul id='IoG07'></ul>
                本文介绍了如何判断 MySQL 表的上次更新时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                在我页面的页脚中,我想添加诸如上次更新 xx/xx/200x"之类的内容,此日期是某个 mySQL 表的最后一次更新时间.

                In the footer of my page, I would like to add something like "last updated the xx/xx/200x" with this date being the last time a certain mySQL table has been updated.

                最好的方法是什么?是否有检索上次更新日期的功能?每次需要这个值时都应该访问数据库吗?

                What is the best way to do that? Is there a function to retrieve the last updated date? Should I access to the database every time I need this value?

                推荐答案

                在更高版本的 MySQL 中,您可以使用 information_schema 数据库来告诉您另一个表何时更新:

                In later versions of MySQL you can use the information_schema database to tell you when another table was updated:

                SELECT UPDATE_TIME
                FROM   information_schema.tables
                WHERE  TABLE_SCHEMA = 'dbname'
                   AND TABLE_NAME = 'tabname'
                

                这当然意味着打开与数据库的连接.

                This does of course mean opening a connection to the database.

                另一种选择是在更新 MySQL 表时触摸"特定文件:

                An alternative option would be to "touch" a particular file whenever the MySQL table is updated:

                关于数据库更新:

                • O_RDRW 模式打开时间戳文件
                • 关闭再次
                • Open your timestamp file in O_RDRW mode
                • close it again

                或者替代

                • 使用touch(),与 utimes() 函数等效的 PHP 函数,用于更改文件时间戳.
                • use touch(), the PHP equivalent of the utimes() function, to change the file timestamp.

                页面显示:

                • 使用stat()回读文件修改时间.
                • use stat() to read back the file modification time.

                这篇关于如何判断 MySQL 表的上次更新时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:哪个最快?SELECT SQL_CALC_FOUND_ROWS FROM `table`,或 SE 下一篇:使用 SELECT 插入

                相关文章

                最新文章

                • <bdo id='EyfJc'></bdo><ul id='EyfJc'></ul>

                <small id='EyfJc'></small><noframes id='EyfJc'>

                1. <tfoot id='EyfJc'></tfoot>

                    <legend id='EyfJc'><style id='EyfJc'><dir id='EyfJc'><q id='EyfJc'></q></dir></style></legend>
                  1. <i id='EyfJc'><tr id='EyfJc'><dt id='EyfJc'><q id='EyfJc'><span id='EyfJc'><b id='EyfJc'><form id='EyfJc'><ins id='EyfJc'></ins><ul id='EyfJc'></ul><sub id='EyfJc'></sub></form><legend id='EyfJc'></legend><bdo id='EyfJc'><pre id='EyfJc'><center id='EyfJc'></center></pre></bdo></b><th id='EyfJc'></th></span></q></dt></tr></i><div id='EyfJc'><tfoot id='EyfJc'></tfoot><dl id='EyfJc'><fieldset id='EyfJc'></fieldset></dl></div>