题目内容

标签P表示的是() (3分)

A. 列表
B. 段落
C. 和div标签相同
D. 换行

查看答案
更多问题

PHP中声明变量的格式是() (5分)

A. $变量名=初值
B. ¥变量名=初值
C. !变量名
D. ¥变量名

PHP中$a=4;$str=‘123$a' echo $str 的结果是什么() (5分)

A. 123$a
B. 1234
C. 123
D. 124

在学生信息表(Student)中,有“刘德华”这位学生的记录,但是他的生日字段(Birthday)显示为NULL。如果想把他的生日添加为“1972-6-7”,则应该执行下列哪条语句( )。

A. insert into Student(Birthday) values(‘1972-6-7’) where name=’刘德华’
B. insert into Student values(‘1972-6-7’) where Birthday is null
C. update Student set name=’刘德华’where Birthday=’1972-6-7’
D. update Student set Birthday=’1972-6-7’where name=’刘德华’

在SQL语言中,条件“BETWEEN 20 AND 30”表示年龄在20到30之间,并且( )。

A. 包括20岁和30岁
B. 不包括20岁和30岁
C. 包括20岁不包括30岁
D. 不包括20岁包括30岁

答案查题题库