mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
12 lines
242 B
Text
12 lines
242 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;
|
|
use test;
|