MySQL Forums
Forum List  »  InnoDB

Re: MS SQL Server to MySQL for WITH
Posted by: Ra Nala
Date: October 14, 2017 01:54AM

select ab.col1,ab.col2 from
(
SELECT 1 AS col1, 2 AS col2
UNION ALL
SELECT 3, 4
)ab

Is above mysql syntax is correct approach sir


below MS SQL SERVER syntax

WITH cte AS
(
SELECT 1 AS col1, 2 AS col2
UNION ALL
SELECT 3, 4
)
SELECT col1, col2 FROM cte;

Options: ReplyQuote


Subject
Views
Written By
Posted
1013
October 13, 2017 12:49PM
434
October 13, 2017 12:50PM
470
October 13, 2017 12:53PM
460
October 13, 2017 08:42PM
427
October 13, 2017 09:07PM
505
October 14, 2017 01:47AM
471
October 14, 2017 02:43PM
554
October 17, 2017 12:05PM
Re: MS SQL Server to MySQL for WITH
509
October 14, 2017 01:54AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.