mirror of
https://github.com/MariaDB/server.git
synced 2025-09-11 05:52:26 +03:00
5 lines
123 B
Plaintext
5 lines
123 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
CREATE OR REPLACE VIEW v AS WITH cte AS ( SELECT 1 ) SELECT * FROM cte;
|
|
DROP VIEW v;
|