下面描述中不属于数据库系统特点的是
- A.数据共享
- B.数据完整性
- C.数据冗余度高
- D.数据独立性高
热度🔥352
解析:打开微信小程序查看本题解析
若有关系模型 Students(学号,姓名,性别,专业),则下列 SQL 语句中错误的是
有以下程序
#include
int fun(int x)
{
int p;
if(x==0||x==1)
return(3);
p=x-fun(x-2);
return p;
}
main()
{
printf("%d\n",fun(7));
}
执行后的输出结果是
有以下程序
#include
#include
struct A
{
int a;
char b[10];
double c;
};
void f(struct A t);
main()
{
struct A a={1001,"ZhangDa",1098.0};
f(a);
printf("%d,%s,%6.1f\n", a.a,a.b,a.c);
}
void f(struct A t)
{
t.a=1002;
strcpy(t.b,"ChangRong");
t.c=1202.0;
}
程序运行后的输出结果是
在SELECT语句中,以下有关ORDER BY子句的叙述中不正确的是()