mysql 中的 getdate()

发布于 2024-09-09 23:28:41 字数 277 浏览 9 评论 0原文

我正在创建一个系统,该系统在完成某些操作时更新用户活动。 我有一个变量 $userhistory= '用户编辑了 '.$info.' 2010 年 7 月 14 日或 (07-14-2010);

我想知道如何自动获取日期。对于 sql 查询,我使用 NOW(),但在像 $userhistory 这样的变量中,我如何获取日期,它只需要这两种形式中的一种。不与时俱进。 另外,我正在更新数据库中的用户历史记录列,这是一个文本字段。这是正确的方法吗?我怎样才能只保存最近几次更新中的 5 或 10 条?

I am creating a system which updates the user activity when something is done.
I have a variable $userhistory= 'User edited '.$info.' on July 14 2010 or (07-14-2010);

I want to know how can i get the date automatically. for sql query i am using NOW(), but in a variable like $userhistory how do i get the date and it want it only in either of these forms. not along with the time.
Also, I am updating the column userhistory in the database, which is a text field. Is this the correct way to do it? How can i save only 5 or 10 of the last few updates?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沩ん囻菔务 2024-09-16 23:28:41

如果您在更新或写入数据库条目时使用 NOW(),则存储日期(用户历史记录?)的列应该是 DATETIME 类型。

然后你会像平常一样运行 SQL:

SELECT field1, field2, UNIX_TIMESTAMP(userhistory) FROM table;

然后在 PHP 中,对数据库结果使用 date() 来相应地格式化它:

// July 14 2010
date('F j Y', $row['userhistory']);
// 07-14-2010
date('m-d-Y', $row['userhistory']); ,

If you are using NOW() when you update or write an entry to the database, the column storing the date (userhistory?) should be of DATETIME type.

Then you'd you'd run your SQL as normal :

SELECT field1, field2, UNIX_TIMESTAMP(userhistory) FROM table;

Then in PHP, use date() on the database result to format it accordingly:

// July 14 2010
date('F j Y', $row['userhistory']);
// 07-14-2010
date('m-d-Y', $row['userhistory']); ,
魂归处 2024-09-16 23:28:41

不使用 PHP 也可以做到这一点。

SELECT
    DATE_FORMAT(date_column, '%M %d %Y') AS 'Formatted',
    DATE_FORMAT(date_column, '%m-%d-%Y') AS 'Formatted2'
FROM
    table;

You can do it without PHP as well.

SELECT
    DATE_FORMAT(date_column, '%M %d %Y') AS 'Formatted',
    DATE_FORMAT(date_column, '%m-%d-%Y') AS 'Formatted2'
FROM
    table;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文