已知有关系R(A,B,C),其中A是主码,现有如下创建索引的SQL语句:
CREATE CLUSTERED INDEX idx1 ON R(B)
则下列说法中正确的是()。
- A.idx1既是聚集索引,也是主索引
- B.idx1是聚集索引,但不是主索引
- C.idx1是主索引,但不是聚集索引
- D.idx1既不是聚集索引,也不是主索引
热度🔥198
解析:打开微信小程序查看本题解析
以下叙述中正确的是
若有以下程序
#include
#include
#include
typedef struct stu {
char *name, gender;
int score;
} STU;
void f(char *p)
{
p=(char *)malloc(10);
strcpy(p, "Qian");
}
main()
{
STU a={NULL, 'm', 290}, b;
a.name=(char *)malloc(10);
strcpy( a.name, "Zhao" );
b = a;
f(b.name);
b.gender = 'f'; b.score = 350;
printf("%s,%c,%d,", a.name, a.gender, a.score);
printf("%s,%c,%d\n", b.name, b.gender, b.score);
}
则程序的输出结果是
小金从网站上查到了最近一次全国人口普查的数据表格,他准备将这份表格中的数据引用到Excel中以便进一步分析,最优的操作方法是( )。