MySql does not understand the operator "^", i.e., we must use power(x,y) instead of x^y. How to translate x^y to power(x,y)?.
Thanks
César Lozada
MySql does not understand the operator "^", i.e., we must use power(x,y) instead of x^y. How to translate x^y to power(x,y)?.
Thanks
César Lozada
CForm[x^y]– george2079 Aug 30 '16 at 20:20ClearAll[x,y,power] x^y /.x_^y_:>power[x,y]//TraditionalForm– user42582 Aug 30 '16 at 20:25