查询一个表中总记录数的SQL语句语法格式是______。
A
暂无解析
执行语句 "CREATE INDEX in_dept ON tb_dept(telephone(6) ,DESC)"后,在 tb_dept 表的 telephone 属性上 ______。
下列说法不正确的是( )。
有以下程序:输出的结果是( )。
#include<
struct stu
{ int num;
char name[10] :
int age;}
void fun(struct stu*p)
{printf("%sn" ,(*p).name);}
tllain()
{
struct stu students[3]={{9801 ,"Zhang".20} ,
{9802 ,"Wang",19},{9803 ,"Zhao" ,1 8}}
fun(students+2);
}