下列说法正确的是:()
A、分布式处理是把任务分散到网络中不同的计算机上并行处理,而不是集中在一台大型计算机上,使其具有解决复杂问题的能力。ABC
暂无解析
下列创建游标的语法格式中,正确的是______。
有以下程序:输出的结果是()。
#include<
structstu
{intnum;
charname[10]:
intage;}
voidfun(structstu*p)
{printf("%sn",(*p).name);}
tllain()
{
structstustudents[3]={{9801,"Zhang".20},
{9802,"Wang",19},{9803,"Zhao",18}}
fun(students+2);
}
下列关于数据的描述中,错误的是______。
在MySQL中,用户账号信息存储在______。
学生表student包含sname、sex、age三个属性列,其中age的默认值是20,执行SQL语句INSERTINTOstudent(sex,sname,age)VALUES("M","Lili",);的结果是______。