It is said that "MySQL will support CTE's in version 8". But with MySQL server upgraded to 8.0.12, I am still getting this Syntax error for using 'with' clause. The SQL statement I was using is pretty simple
With t1 as (select name, price from product) select name from t1
Can anyone point out what is the problem with this line of code?