I would like to use datatables not with a complete table but with a simple query like
SELECT a as Name1, b as Name2, a+b as Diference FROM table WHERE a>1 AND b>2 ORDER BY b DESC.
Is there any simple way to do it?
Thanks
SELECT a as Name1, b as Name2, a+b as Diference FROM table WHERE a>1 AND b>2 ORDER BY b DESC.
Is there any simple way to do it?
Thanks