gpt4 book ai didi

mysql - 如何用mysql制作一个一次性数据库?

转载 作者:行者123 更新时间:2023-11-29 20:40:56 24 4
gpt4 key购买 nike

我正在寻找相当于:

pg_ctl init -D ~/throw-away-database
pg_ctl start -D ~/throw-away-database
……… work work ………
pg_ctl stop -D ~/throw-away-database
rm -rf ~/throw-away-database

在 MySQL 社区服务器 5.7.4 中。

最佳答案

怎么样

create schema my_throw_away001; -- creates a database synonym schema
use my_throw_away001; -- set this as the current to use

-- Do stuff like

create table myTable
( id int auto_increment primary key,
thing varchar(100) not null
);

insert myTable(thing) values ('frog'),('cat');

select * from myTable;

-- Cleanup:

drop schema my_throw_away001; -- drops database, poof gone

关于mysql - 如何用mysql制作一个一次性数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38637164/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com