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 7431149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:15:02+00:00 2026-05-29T09:15:02+00:00

Documentation states: class Cart { // … /** * @OneToOne(targetEntity=Customer, inversedBy=cart) * @JoinColumn(name=customer_id, referencedColumnName=id)

  • 0

Documentation states:

class Cart
{
    // ...

    /**
     * @OneToOne(targetEntity="Customer", inversedBy="cart")
     * @JoinColumn(name="customer_id", referencedColumnName="id")
     */
    private $customer;

    // ...
}

This annotation represents such sql:

JOIN Customer c ON c.id = cart.customer_id

And the issue is that I need to add additional comparison there, like:

JOIN Customer c ON c.id = cart.customer_id AND c.anotherField = <constant>

Any solutions for that?

UPD:

the real additional condition I need for now is <const> BETWEEN c.f1 AND c.f2

  • 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-05-29T09:15:02+00:00Added an answer on May 29, 2026 at 9:15 am

    you can use the WITH keyword to specify additional join conditions, as you can see in some of the examples.

    i think this should get you going:

    SELECT l, c FROM location
    INNER JOIN Customer c
    WITH CURRENT_TIMESTAMP() BETWEEN c.f1 AND c.f2
    WHERE CURRENT_TIMESTAMP() BETWEEN l.f1 AND l.f2
    

    i removed the ON clause because i think there’s no need to explicitly specify the join’s ON fields unless they are not the “standard” ones (id of each entity)

    also notice the call to CURRENT_TIMESTAMP() which translates into MySQL’s NOW(). check out a list of other pretty useful aggregate functions and expresions here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The documentation for the .NET Semaphore class states that: There is no guaranteed order,
The documentation for the method getItemPosition in Android's PagerAdapter class states that it is:
The prism documentation states that there are three region adapters available: ContentControlRegionAdapter . This
When I compile something like this: public class MyClass { void myMethod(String name, String
The Unity documentation states: if a class that developers instantiate using the Resolve method
The documentation states that: The Q_OBJECT macro must appear in the private section of
The msdn documentation states that a static generic Queue is thread-safe. Does this mean
Documentation states: Adds a user-defined custom member to an instance of a Windows PowerShell
Documentation states: Files are included based on the file path given or, if none
Matlab documentation states that it is possible to replace the Nth occurrence of the

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.