
MySQL使用Union创建视图报错
- mysql> select * from test_main;
- +----+-------+
- | id | value |
- +----+-------+
- | 1 | ONE |
- | 2 | TWO |
- | 3 | THREE |
- +----+-------+
- 3 rows in set (0.00 sec)
- mysql> create table test_main2 select * from test_main;
- Query OK, 3 rows affected (0.04 sec)
- Records: 3 Duplicates: 0 Warnings: 0
- -- 创建视图, sql 语句加了括号, 报错。
- CREATE VIEW view_test_main
- AS
- (
- SELECT * FROM test_main
- UNION ALL
- SELECT * FROM test_main2
- );
- ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
- corresponds to your MySQL server version for the right syntax to use near 'UNION
- ALL
- SELECT * FROM test_main2
- )' at line 5
- -- 创建视图, sql 语句不加括号, 通过。
- mysql> CREATE VIEW view_test_main
- -> AS
- -> SELECT * FROM test_main
- -> UNION ALL
- -> SELECT * FROM test_main2;
- Query OK, 0 rows affected (0.01 sec)
============ 欢迎各位老板打赏~ ===========


与本文相关的文章
- · docker定时任务Mysql脚本
- · docker安装mysql8注意事项
- · .NET8 Mysql SSL error
- · 定时备份docker中的mysql
- · docker-compose通过容器名连接mysql
- · unity3d mysql error: The given key was not present in the dictionary.
- · MySQL 批量修改数据表编码及字符集
- · Your database must use ‘READ-COMMITTED’ as the default isolation level.
- · MySQL-InnoDB存储引擎
- · 将数据从mysql迁移到clickhouse
- · mysql关于索引那些事儿
- · mysql大数据表加字段改名