ut.4
来自「linux 下用c++ 开发的一个小型数据库系统」· 4 代码 · 共 24 行
4
24 行
/* * ut.4: tests destroy *//* create some relations */create table soaps(soapid int, sname char(28), network char(4), rating real);create table stars(starid int, stname char(20), plays char(12), soapid int);/* make sure they made it into the catalog */help table soaps;help table stars;/* destroy the relations */destroy table stars;help;destroy table soaps;help;/* make sure the files got removed */!lsquit;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?