douju5062 2016-03-22 05:50
浏览 33

如何使用mysql查询查找用户信息

I want to find user id and Email from mysql query

I have three table in mysql database

  1. users 2. photographer_timetables 3.jobs

1.users

user table

2.photographer_timetables photographer timetable

3 jobs enter image description here

here is my query

   SELECT Users.id AS `Users__id`
      , Users.email AS `Users__email` 
   FROM users          Users 
   LEFT 
   JOIN photographer_timetables pt    
     ON (pt.user_id = users.id AND role =3) 
  RIGHT JOIN jobs jb 
     ON (jb.photographer_id = pt.user_id 
     AND HOUR(jb.job_time) !='12:00:00'  
     AND jb.job_date !='2016-03-21')    
 WHERE (HOUR(start_time) <= '08:00:00'  
    AND weekday = 1)

I want to find those users information who is not available in job_date and job_time

my sql query return blank but o/p should be at least on row

Thanks in advance

  • 写回答

1条回答 默认 最新

  • doujiaoang69440 2016-03-22 05:58
    关注

    You can use NOT EXISTS.

    Query

    select * from users
    where not exists (
      select 1 from jobs
      where jobs.user_id = users.id
    );
    

    Hope that once the job over, you are deleting the row from jobs table.

    And if you want to check who all are available for a particular date. Then

    Query

    select * from users
    where not exists (
      select 1 from jobs
      where jobs.user_id = users.id
      and jobs.job_date = '2016-03-23' -- change the date accordingly
    );
    
    评论

报告相同问题?

悬赏问题

  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥20 测距传感器数据手册i2c