Jump to content

[SOLVED] Help with SELECT statement


Ne0_Dev

Recommended Posts

Hi All,

 

I am trying to filter my records to show articles that are only 3 years old.  here is my query:

 

"SELECT * FROM tbl_newsarticles WHERE created >= YEAR() -3 ORDER BY created DESC";

 

The date format is stored in the database as datetime, so I am presuming I need to format it to show only the Year when comparing. I am sure that this is a simple fix, but can't seem to work it out  :-\

 

Any help greatly appreciated!

 

 

Link to comment
Share on other sites

Hi Zenag,

 

When runing the query I am getting the following error:

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as year ORDER BY year DESC' at line 1

 

Any suggestions?

 

Cheers

Link to comment
Share on other sites

Zenag

 

Thanks for the updated query, I have implemented it and with on adjustment I now have it working as intended.  the only thing I added was the 'greater than' operator.

 

"SELECT * FROM tbl_newsarticles WHERE year(created)>=year(curdate())-3 ORDER BY created DESC";

 

Thanks for the help.

 

Moat appreciated

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.