WHERE 1=1 LIMIT 1 OFFSET 0 being added to queries

QuestionsWHERE 1=1 LIMIT 1 OFFSET 0 being added to queries
DC asked 2 years ago

I’m trying to execute this query

select distinct members.id, members.name, members.email, payments.create_time from members left outer join payments on members.recurring_payment_id = payments.billing_agreement_id order by payments.create_time desc

This works when I perform it directly in MYSQL, but generates this error when performed through Grid

Couldn’t execute query. 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 ‘WHERE 1=1 LIMIT 1 OFFSET 0’ at line 1 – select distinct members.id, members.name, members.email, payments.create_time from members left outer join payments on members.recurring_payment_id = payments.billing_agreement_id order by payments.create_time desc WHERE 1=1 LIMIT 1 OFFSET 0

It seems part of the phpgrid is adding “WHERE 1=1 LIMIT 1 OFFSET 0” to the end of the query.

 

Is there any way to prevent this?  It’s preventing my query from working

2 Answers
Mike answered 2 years ago

Don’t use order-by in your queries. The order-by is handled by the Grid commands (you can find examples on the demo pages).

The where 1=1 is part of the grid-software processing to build the top(n) records for the initial display.

Abu Ghufran Staff answered 2 years ago

Hello,

You need to remove the order by from query and set it with these options.

$opt["sortname"] = "payments.create_time"; 
$opt["sortorder"] = "desc"; 
// where $opt goes to set_options() function
_________________________
Abu Ghufran - Dev Team
Grid 4 PHP Framework
 
Your Answer

20 + 9 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?