当前位置:考试网  > 试卷库  > 计算机类  > 等级考试  > 计算机二级  > MySQL数据库程序设计  > 在MySQL中,NULL的含义是______。
试题预览

在MySQL中,NULL的含义是______。

更新时间:2024-11-24 03:34:57
A、空串
B、数值0
C、无值
D、FALSE
收藏
纠错
正确答案:

C

答案解析:

暂无解析

你可能感兴趣的试题

有以下程序:输出的结果是( )。

#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);

}

在 GRANT授权语句中, WITH GRANT OPTION的含义是 ______。

下述程序的输出结果是( )。

#include

void main()

{ int b[6]={2 ,4,6,8,10,12);

int*p=b ,**q=&p;

printf("%d ," ,*(p++));

printf("%d ," ,**q);

}

下列说法不正确的是( )。

设有客户表 customers(id ,name,tel) ,各字段的含义分别是客户编号、客户姓名和客户联系电话,其 中 id 字段设置为 AUTO_INCREMENT属性,且当前表中 id 字段最大值为 22306。若此刻执行语句 "INSERT INTO customers VALUES (22500," 李明",87556655);" 之后,接着执行语句 "INSERT INTO customers VALUES(0," 张良 ",87523012);" ,则此时该表中 "张良 " 的客户编号是 ______。