![]() |
Sergey Kornilov admin 2/26/2016 |
This can be done. Normally this can be done via UNION SQL Query that allows you to combine data from several unrelated tables. Since PHPRunner doesn't support UNION queries you will need to create a view in your database on the top of this SQL Query. CREATE VIEW vw_product_services AS |
![]() |
gehrenfeld author 2/27/2016 |
This can be done. Normally this can be done via UNION SQL Query that allows you to combine data from several unrelated tables. Since PHPRunner doesn't support UNION queries you will need to create a view in your database on the top of this SQL Query. Assuming that your database is MySQL here are relevant links: http://dev.mysql.com/doc/refman/5.7/en/create-view.html http://dev.mysql.com/doc/refman/5.7/en/union.html And here is a complete example for you: CREATE VIEW vw_product_services AS
|