gpt4 book ai didi

php - 查询两个表的数据

转载 作者:行者123 更新时间:2023-11-29 05:28:36 24 4
gpt4 key购买 nike

我有两个表:

  1. user_details:idfirstnamelastname
  2. user_timer:iduser_id(在 user_details 中通过 id 引用)、checkin_datecheckin_time

现在当用户输入开始和结束日期时,我想生成结果:

当用户输入这些日期时,我希望输出如下所示:

名字姓氏checkin_datecheckin_time

我已经执行了获取 checkin_date 和 checkin_time 的查询:

select * from user_timer where `checkin_date` between '$startdate' and '$enddate'

现在如何使用连接查询或子查询获取firstname & lastname

我只想对输出使用单个查询。请给我建议,我是 PHP 新手。

最佳答案

试试这个

select utimer.checkin-date, utimer.checkin-time,  user.firstname, user.lastname
from user_timer utimer
INNER JOIN user_details user ON utimer.user_id = user.id
where utimer.checkin_date between '$startdate' and '$enddate'

关于php - 查询两个表的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17229664/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com