mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-07 14:56:59 +02:00
9 lines
230 B
SQL
Vendored
9 lines
230 B
SQL
Vendored
drop database if exists db789;
|
|
create database db789;
|
|
use db789;
|
|
|
|
create table refrain (id char(1) primary key);
|
|
insert into refrain values ('a'), ('b'), ('c'), ('d');
|
|
|
|
create view proceed as select * from refrain where id > 'b';
|