mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
11 lines
232 B
Text
11 lines
232 B
Text
--disable_warnings
|
|
drop database if exists MySQLTest;
|
|
--enable_warnings
|
|
|
|
|
|
create database MySQLTest;
|
|
use MySQLTest;
|
|
create table TaB (Field int);
|
|
create view ViE as select * from TAb;
|
|
show create table VIe;
|
|
drop database MySQLTest;
|