Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9200187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T22:42:34+00:00 2026-06-17T22:42:34+00:00

I have fields in my table for date, but they contain everything – day,

  • 0

I have fields in my table for date, but they contain everything – day, year and month. Can I write a query to get only the records, which has month equal to the current month? I can do this:

$today = new \DateTime();
$month = $today->format('m');

$cat = $em->getRepository('EMBudgetTrackerBundle:Expense')->find(1);   
$ex_date = $cat->getDate();

and compare $month and $ex_date, but can I write some kind of query? Something like this:

public function getExpensesByMonth($month)
{
    $q = $this->createQueryBuilder('e');

    $q->select('e')
      ->where('e.date = :date')
      ->setParameter('date', $month);

    return $q->getQuery()->getResult();
}

Thank you in advance! 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T22:42:36+00:00Added an answer on June 17, 2026 at 10:42 pm

    If you database column is in DateTime format you can use the DateTime object in your query. As far as I know you can only query for time ranges though.

    public function getExpensesByMonth($beginning, $end)
    {
        $q = $this->createQueryBuilder('e');
    
        $q->select('e')
          ->where('e.date > :beginning')
          ->andWhere('e.date < :end')
          ->setParameter('beginning', $beginning)
          ->setParameter('end', $end);
    
        return $q->getQuery()->getResult();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table with 3 fields: color, fruit, date. I can pick 1
We have a from date and To date in Table fields. We are getting
I have 2 tables: matches TABLE FIELDS: record, date, competition outrights TABLE FIELDS: record,
I have a table containing 2 date fields and an identifier (id, fromdate and
Suppose i have a mysql table name table with fields rank date id The
I have a table with an associate_id and date fields. I want to get
I have a large table with the following fields: Date Product_ID AmountEUR_Field1 AmountEUR_Field2 AmountEUR_Field3
I have a table named rates and it has two fields date and rate.
I have table consisting of these fields: id | date_from | date_to | price
I have table consisting of these fields: id | date_from | date_to | price

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.