![]() |
Sergey Kornilov admin 10/24/2014 |
Create a view in your database on the top of your SQL query and use this view as a datasource in PHPRunner. This will solve the issue. |
S
|
Sergej author 10/25/2014 |
Create a view in your database on the top of your SQL query and use this view as a datasource in PHPRunner. This will solve the issue.
|
A
|
Anapolis 10/25/2014 |
The first table in Query is view actually - but the second one is joined as a table - should i create the second table as a view also? is it possible to join two views? thnx
|
![]() |
Sergey Kornilov admin 10/26/2014 |
In your MySQL views you can refer to other views, join them etc. As a rule of thumb - if your SQL query is too complicated for PHPRunner to parse use view in MySQL. |
S
|
Sergej author 10/27/2014 |
thank you! |