mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
10 lines
316 B
Text
10 lines
316 B
Text
|
drop database if exists MySQLTest;
|
||
|
create database MySQLTest;
|
||
|
use MySQLTest;
|
||
|
create table TaB (Field int);
|
||
|
create view ViE as select * from TAb;
|
||
|
show create table VIe;
|
||
|
Table Create Table
|
||
|
vie CREATE VIEW `mysqltest`.`vie` AS select `mysqltest`.`tab`.`Field` AS `Field` from `mysqltest`.`tab`
|
||
|
drop database MySQLTest;
|