<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
> I'm working on bug [0].<br>
> Relevant modifications to the sql query is done inside tbl_export.php,<br>
> according to the selected results from the table browse window which is<br>
> going to export. When modifying the query, it actually rebuild from the<br>
> scratch.<br>
><br>
> As I understand there are 2 requirements for modify the query.<br>
> 1. Remove the LIMIT clause (for append any where clause)<br>
> 2. Add needed filtering clause (additional where clause)<br>
><br>
> To do the above things is it really need to rebuild the query from the<br>
> scratch ?<br>
> I don't think that there are scenarios which need to modify the beginning<br>
> part of he query (before where clause). So is it okay to modify the query<br>
> only from the where clause. Though the current analyzer doesn't support for<br>
> the multiple select statements, hopefully this will fix the bug I mentioned.<br>
> Any thoughts on this ?<br>
<br>
</div>Chanaka,<br>
I believe this is going to be tricky to solve, because there could be<br>
many WHERE clauses (in the main SELECT and in the subselect).<br></blockquote></div><br>Hi Marc,<br><br>I mean for any case even it has multiple where clauses, the select part will not be changed. Rebuilding this first part messing up the query if there are sub queries. In following query unchanged first part is in bold.<br>
<b>SELECT `id`, `name` FROM `customers`</b> WHERE id NOT IN ( SELECT id FROM companies WHERE name LIKE '%u%')<br><br>Apart from that, SQL with several where clauses, can be represented as a one SQL query (without any sub queries and with only one where clause). Currently that's reached by using the primary key values of the resulted table rows which are going to export.<br>
<br>But when building new where clause, other than only combining those primary key values with 'OR' clause, at the end another clause is appended which is from analyzed sql [0]. That where clause is the last where clause of the original SQL query. I don't see any use of this since we already can identify the rows by primary key.<br>
<br>Your thoughts on this will be very helpful to go forward correctly.<br><br>[0] : <a href="https://github.com/phpmyadmin/phpmyadmin/blob/master/tbl_export.php#L61">https://github.com/phpmyadmin/phpmyadmin/blob/master/tbl_export.php#L61</a><br>
<br>Regards !<br>-- <br><font size="4">Chanaka Dharmarathna<br></font><div><font color="#999999"><b>Virtusa (Pvt) Ltd. | </b></font><b style="color:rgb(153,153,153)">Sri Lanka</b></div><br>