|
|
|
 |
| 0 items |
 |
|
| |
|
|
1195 - Table 's' is marked as crashed and last (automatic?) repair failed
SELECT s.total, s.products_id, s.products_name
FROM sales_table s
LEFT JOIN products_to_categories p2c
USING ( products_id ) , categories c
WHERE p2c.categories_id = c.categories_id
and (c.categories_id = '1815' OR c.parent_id = '1815')
order by total DESC
limit 10
[TEP STOP]
| |