Jump to content

[SOLVED] MySQL Store every login dates and times


samona

Recommended Posts

Call mysql_query() inside the loop after assigning to $sql; that will make multiple calls to the database though.

 

With a small amount of cleverness you can do it with a single call.

 

This will insert three rows into the table `table`.

INSERT INTO `table` (`col1`, `col2`) VALUES
  ('a', 'a'),
  ('b', 'b'),
  ('c', 'c')

Link to comment
Share on other sites

I'm trying to do a left join to get tasks that were not completed. However, the query gives me tasks that were completed as well as tasks that were not completed.  How, do I get only tasks that have a NULL Value.  My code is below: 

 

 

Select Task.Description, task_user.created From Task
LEFT JOIN task_user ON Task.Task_ID = task_user.task_ID
AND DATE_FORMAT(task_user.created, '%Y %m %d') = DATE_FORMAT(CURDATE(), '%Y %m %d')  

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.