⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qu.2

📁 linux 下用c++ 开发的一个小型数据库系统
💻 2
字号:
/* * test 2 tests QU_Select with indices *//* create relations */create table soaps(soapid int, name char(28), network char(4), rating real);load table soaps from ("../data/soaps.data");create table stars(starid int, real_name char(20), plays char(12), soapid int);load table stars from ("../data/stars.data");/* * some selections involving indices *//* the stars of "Days of Our Lives"*/select real_name, plays from stars where soapid = 0;/* names of soaps on CBS (uses secondary index) */select name, network from soaps where network = "CBS";/* index selection that doesn't find anything */select name, rating from soaps where rating = 678.90;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -