Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How can i update a record of specfic user from start date of moth till the end of that specific month?

Database columns Image

UPDATE `agentstats` SET `total_target` = '150' from `agentstats` Where `date` BETWEEN '2022-01-01' and '2022-01-31'and`user_id` = 3
user_id is the foreign key 

This is the query i made its not working.
Can any one please help me this.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You have a few syntax errors. Try this:

UPDATE `agentstats` 
SET `total_target` = '150'
Where `date` BETWEEN '2022-01-01' and '2022-01-31' and `user_id` = 3

Basically: remove from `agentstats` and add spaces before and after the and in '2022-01-31'and`user_id` = 3

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading