Hi,
we are migrating queries from MS SQL Server to MySQL DB in one of projects. we are facing issues for sql query. We have WITH in select query and when i place same in MySQL database then i am failing.
MS SQL Server select command.
WITH FISCAL(FY_END_DT,CFY_YEAR,CFY_START_DT,CFY_END_DT, CFY_CURRENT_MONTH) AS abc
Is there any equivalent function for (WITH) in MySQL DB?
Thank you
we are migrating queries from MS SQL Server to MySQL DB in one of projects. we are facing issues for sql query. We have WITH in select query and when i place same in MySQL database then i am failing.
MS SQL Server select command.
WITH FISCAL(FY_END_DT,CFY_YEAR,CFY_START_DT,CFY_END_DT, CFY_CURRENT_MONTH) AS abc
Is there any equivalent function for (WITH) in MySQL DB?
Thank you