Reputation: 1
Beginner with MariaDB and trying to understand the syntax. I’m trying to create the simplest example and then build from there. Shouldn’t the following work?
with myCTE as
(SELECT 1 as MyNum, 'A' as MyChar
UNION
SELECT 2 as MyNum, 'B' as MyChar)
SELECT *
FROM myCTE
I’m looking at the following three references and believe that I am adhering to their approach:
I’m sure I’m missing something simple, but just can’t see it.
Using MariaDB and TablePlus on iPad and I get generic error message:
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'myCTE as (
…
Thanks for the assistance… First question on Stackoverflow
Upvotes: 0
Views: 671