• 2022-06-12 问题

    以下删除stu表成绩小于60的记录,可是实现的代码是() A: delete stu where score<60; B: delete from stu where score<60; C: delete stu D: truncate stu where score<60;

    以下删除stu表成绩小于60的记录,可是实现的代码是() A: delete stu where score<60; B: delete from stu where score<60; C: delete stu D: truncate stu where score<60;

  • 2022-06-06 问题

    在如下结构体中,不正确的是( )。 A: struct student {char name[10]; float score; }; B: struct stu[5] {char name[10]; float score; }; C: struct student {char name[10]; float score; } stu[5]; D: struct {char name[10]; float score; }stu[5];

    在如下结构体中,不正确的是( )。 A: struct student {char name[10]; float score; }; B: struct stu[5] {char name[10]; float score; }; C: struct student {char name[10]; float score; } stu[5]; D: struct {char name[10]; float score; }stu[5];

  • 2022-07-28 问题

    从stu表和score表中实现联合查询,查询stu表的id,name字段和score表中的courseid,score字段,两表字段id相同,成绩score大于80分,按score升序排列。

    从stu表和score表中实现联合查询,查询stu表的id,name字段和score表中的courseid,score字段,两表字段id相同,成绩score大于80分,按score升序排列。

  • 2022-06-19 问题

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。 A: alter table stu add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu add constraint fk_sid foreign key(sid) references score(sid); C: alter table score add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score add constraint fk_sid foreign key(sid) references stu(sid);

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。 A: alter table stu add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu add constraint fk_sid foreign key(sid) references score(sid); C: alter table score add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score add constraint fk_sid foreign key(sid) references stu(sid);

  • 2021-04-14 问题

    分析下面的程序,下列说法中错误的是 ________ 。 #define NULL 0 #include "conio.h" struct stu { long num; char name[20]; int score; struct stu * next; }; int main() { struct stu *head,*p,*pa,*pb,*pc; pa=(struct stu *)malloc(sizeof(struct stu)); pb=(struct stu *)malloc(sizeof(struct stu)); pc=(struct stu *)malloc(sizeof(struct stu)); scanf("%ld%s%d",&pa->num,pa->name,&pa->score); scanf("%ld%s%d",&pb->num,pb->name,&pb->score); scanf("%ld%s%d",&pc->num,pc->name,&pc->score); head=pa; pa->next=pb; pb->next=pc; pc->next=NULL; p=head; while(p!=NULL) { printf("%ld,%s,%d\n",p->num,p->name,p->score); p=p->next; } }

    分析下面的程序,下列说法中错误的是 ________ 。 #define NULL 0 #include "conio.h" struct stu { long num; char name[20]; int score; struct stu * next; }; int main() { struct stu *head,*p,*pa,*pb,*pc; pa=(struct stu *)malloc(sizeof(struct stu)); pb=(struct stu *)malloc(sizeof(struct stu)); pc=(struct stu *)malloc(sizeof(struct stu)); scanf("%ld%s%d",&pa->num,pa->name,&pa->score); scanf("%ld%s%d",&pb->num,pb->name,&pb->score); scanf("%ld%s%d",&pc->num,pc->name,&pc->score); head=pa; pa->next=pb; pb->next=pc; pc->next=NULL; p=head; while(p!=NULL) { printf("%ld,%s,%d\n",p->num,p->name,p->score); p=p->next; } }

  • 2022-06-19 问题

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。() A: alter table stu<br> add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu<br> add constraint fk_sid foreign key(sid) references score(sid); C: alter table score<br> add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score<br> add constraint fk_sid foreign key(sid) references stu(sid);

    设置score表的sid列为外键,关联stu表的sid列,可以使用以下哪条命令实现。() A: alter table stu<br> add constraint fk_sid foreign key(sid) references stu(sid); B: alter table stu<br> add constraint fk_sid foreign key(sid) references score(sid); C: alter table score<br> add constraint fk_sid foreign key(sid) references sore(sid); D: alter table score<br> add constraint fk_sid foreign key(sid) references stu(sid);

  • 2021-04-14 问题

    中国大学MOOC: 有结构体STU如下:struct STU{char name[20];char number[10];int score;};stu是STU类型的变量。下列实参和形参的结合哪项是正确的?

    中国大学MOOC: 有结构体STU如下:struct STU{char name[20];char number[10];int score;};stu是STU类型的变量。下列实参和形参的结合哪项是正确的?

  • 2022-06-16 问题

    下列关于主键约束的语句哪个不正确 A: CREATE TABLE STU(no INT PRIMARY KEY,name VARCHAR2(20)) B: CREATE TABLE STU(no INT,name VARCHAR2(20),PRIMARY KEY(no)) C: CREATE TABLE SCORE(sno INT,cno INT,score INT,PRIMARY KEY(sno,cno)) D: CREATE TABLE SCORE(sno INT PRIMARY KEY,cno INT PRIMARY KEY,score INT)

    下列关于主键约束的语句哪个不正确 A: CREATE TABLE STU(no INT PRIMARY KEY,name VARCHAR2(20)) B: CREATE TABLE STU(no INT,name VARCHAR2(20),PRIMARY KEY(no)) C: CREATE TABLE SCORE(sno INT,cno INT,score INT,PRIMARY KEY(sno,cno)) D: CREATE TABLE SCORE(sno INT PRIMARY KEY,cno INT PRIMARY KEY,score INT)

  • 2021-04-14 问题

    下面程序的运行结果是: 。 typedef union student{ char name[10]; long sno; char sex; float score[4]; }STU; main(){ STU a[5]; printf("%d",sizeof(a)); }

    下面程序的运行结果是: 。 typedef union student{ char name[10]; long sno; char sex; float score[4]; }STU; main(){ STU a[5]; printf("%d",sizeof(a)); }

  • 2022-06-06 问题

    若某查询语句的FROM子句为FROM score RIGHT JOIN stu ON stu.stuid= score.stuid,则以下选项中错误的是 A: 完成的是右外连接 B: 结果集中包含score表的所有行 C: 结果集中包含stu表的所有行 D: 表stu为参考表

    若某查询语句的FROM子句为FROM score RIGHT JOIN stu ON stu.stuid= score.stuid,则以下选项中错误的是 A: 完成的是右外连接 B: 结果集中包含score表的所有行 C: 结果集中包含stu表的所有行 D: 表stu为参考表

  • 1 2 3 4 5 6 7 8 9 10