【判断题】【消耗次数:1】
执行命令“select from sb field启用日期where 名称=车床”,将查询名称为车床设备的启用日期
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 执行命令“select from sb field 启用日期 where 名称=车床”,将查询名称为车床的设备
①  正确
②  错误
【判断题】 执行命令“select from sb field 名称 where year(启用日期)=1990”,将查询1990年启用设备的名称
①  正确
②  错误
【判断题】 执行命令“select from sb field 名称 where 启用日期<{^1990/12/31}”,将查询1990年后启用设备的名称
①  正确
②  错误
【判断题】 执行命令“select * from sb where 名称=车床”,将显示名称不是车床的设备的基本情况
①  正确
②  错误
【判断题】 执行命令“select * from sb order by 启用日期”,将查询表中所有设备的基本情况,查询结果按启用日期升序排
①  正确
②  错误
【判断题】 执行命令“select * from sb where 名称=车床 distinct”,将查询表中所有车床的基本情况,查询结果允许出现重复值
①  正确
②  错误
【判断题】 执行命令 list field 编号,名称for 启用日期>{^1990/12/31}, 将显示表中1990年以后启用的设备的编号、名称
①  正确
②  错误
【判断题】 执行命令 list field 编号,名称for 启用日期<{^1990/12/31}, 将显示表中1990年以后启用的设备的编号、名称
①  正确
②  错误
【判断题】 执行命令“select * from sb order by 价格 DESC,启用日期 asc”,将查询表中所有设备的基本情况,查询结果按价格降序排,价格相同再按启用日期升序排
①  正确
②  错误
【判断题】 执行命令“select * from sb order by 价格 DESC”,将查询表中所有设备的基本情况,查询结果按价格升序排
①  正确
②  错误
随机题目
【单选题】 在javascript中,下列选项中可以获取滚动条距窗口顶端滚动的距离的是(选择一项)
①  document.documentElement.scrollTop
②  document.documentElement.scroll
③  document.style.scrollTop
④  document.style.scroll
【单选题】 在JavaScript中,下列选项能把“毒皇后”这一行删除的是()table border=0 cellspacing=0 cellpadding=0 id=tb tr id=row1 七个小矮人/td 7/td /tr tr id=row2 毒皇后/td 100/td /tr tr id=row3 白雪公主/td 8/td /tr/table(选择一项)
①  document.getElementById(tb).deleteRow(1)
②  document.getElementById(tb).deleteRow(2)
③  document.getElementById(tb).deleteRow[1]
④  document.getElementById(tb).deleteRow[2]
【单选题】 关于DOM的三个组成部分,其中不包括:()(选择一项)
①  Core DOM
②  XML DOM
③  HTML DOM
④  XHTML DOM
【单选题】 关于document对象的常用方法,以下说法错误的有:()(选择一项)
①  getElementById( ) 返加拥有指定id的第一个对象的引用
②  getElementById( ) 返加拥有指定id的对象的集合
③  getElementsByName( ) 返加拥有指定名称的对象的集合
④  write() 向文档写文本,HTML表达式或javascript代码
【单选题】 页面中有一个表单myform,表单中有名为txtName的输入用户名的文本框,则以下验证用户名非空的代码正确的是( )。(选择一项)
①  var name = document.myform.txtName.value; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
②  var name = document.myform.txtName.text; if(name==){ alert(用户名不能为空! document.myform.txtName.focus( ); }
③  var name = document.myform.txtName.value; if(name.isNull==true){ alert(用户名不能为空! document.myform.txtName.focus( ); }
④  var name = document.myform.txtName.text; if(name.isNull==true){ alert(用户名不能为空! doocument.myform.txtName.focus( ); }
【单选题】 下列选项中( )可以用来检索下拉列表框中被选项目的索引号。(选择一项)
①  selectedIndex
②  options
③  length
④  indexNumber
【单选题】 某页面中有两个id分别为mobile和telephone的图片,下面( )能够正确地隐藏id为mobile的图片。(选择一项)
①  document.getElementsByName(mobile).style.display=none
②  document.getElementById(mobile).style.display=none
③  document.getElementsByTagName(mobile).style.display=none
④  document.getElementsByTagName(img).style.display=none
【单选题】 JavaScript代码段如下,下面对代码段分析正确的是( )。marquee direction=left onMouseOver=this.stop( ); onMouseOut=this.start( ); loop=100滚动的文字/marquee则下列选项对代码段描述正确的是( )。(选择一项)
①  文字循环向右滚动100次,然后停止
②  文字向左无限次循环滚动;鼠标停在文字上时,文字停止滚动,移开时,继续滚动
③  文字循环向左滚动100次,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
④  文字向左来回往复滚动,鼠标停在文字上时,文字停止滚动,移开时,继续滚动
【单选题】 以下不属于select对象常用属性的是(选择一项)
①  onchange
②  length
③  selectedIndex
④  options
【单选题】 页面中有一表单myform,表单中有名为txtEmail的输入电子邮件文本框,则以下验证电子邮件格式必须包含点符号(.)代码正确的是( ).(选择 一项)(选择一项)
①  var strEmail = document.myform.txtEmail.value; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
②  var strEmail = document.myform.txtEmail.text; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
③  var strEmail = document.myform.txtEmail.value; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
④  var strEmail = document.myform.txtEmail.text; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }