在DIALOG检索系统中,使用的进库命令是()。 A、SELECT(S)B、TYPE(T)C、BEGIN(B)D、COMBINE(C)E、EXPAND(E)
在DIALOG检索系统中,使用的进库命令是()。
A、SELECT(S)
B、TYPE(T)
C、BEGIN(B)
D、COMBINE(C)
E、EXPAND(E)
相关考题:
在网页中创建一个如下图所示的表单控件的HTML代码是(50)。A.<input type="text" name="T1" size="20">B.<textarea rows="1" name="T1" cols="20"></textarea>C.<input type="radio" value="T1" checked name="R1">D.<select size="1" name="T1"></select>
有两张关系表:Students(SID,SName,Sex,Dept)Prizing(SID,PName,Type,PDate)Students表描述的是学生基本信息.Prizing表描述的是学生获奖信息。①若在应用程序中经常使用如下查询语句:SELECT S.SID,SName,PName,Type FROM Students AS S JOIN Prizing AS P ON S SID=P.SID请问能否使用聚集文件提高此查询的性能?并给出原因。
语句(43)用于在HTML表单中添加默认选中的复选框。A.B. 语句(43)用于在HTML表单中添加默认选中的复选框。A.<input type=radio name=s checked>B.<input type=radio name=s enabled>C.<input type=checkbox name=s checked>D.<input type=checkbox name=s enabled>
在网页中创建一个如下图所示的表单控件的HTML代码是______ 。A.<input type=“text”name=“T1” size=“20”>B.<textarea rows=“1”name=“T1” cols=“20”></textarea>C.<input type=“radio”value=“T1”checked name=“R1”D.<select size=“1”name=“T1”></sclect>
设有关系R(A,B,C)和S(C,D)。与关系代数表达式πA,B,D(σR.C=S.C(R×S)等价的SQL语句是A.SELECT*FROM R,S WHERE R.C=S.CB.SELECT A,B,D FROM R,S WHERE R.C=S.CC.SELE4T 1,2,8 FROM R,S WHERE R=SD.SELECT A,B FROM R WHERE(SELECT D FROM S WHERE R.C=S.
在网页中创建一个如图4-5所示的表单控件,其相应的HTML代码是(41)。A.<select size="1" name="T1"></select>B.<textarea rows="2" name="T1" cols="20"></textarea>C.<input type="radio" value="T1" checked name="R1">D.<input type="text" name="T1" size="20">
在网页中创建一个如下图所示的表单控件的HTML代码是______。A.<input type="text"name="T1"size="20">B.<textarea rows="1"name="T1"cols="20"></textarea>C.<inputtype="radio"value="T1"checkedname="R1">D.<select size="1"name="T1"></select>
如下表student中,如何筛选type为包含数学或语文的记录?() ID type score: A01数学78; A02语文76; A03英语90; A04数学68; A05英语84。A、select*from student where type=”数学”and type=”语文”B、select*from student where type=”数学”or type=”语文”C、select*from student where type in(”数学”,”语文”)D、select*from student where type in(”数学”、”语文”)
分析下面的PASCAL程序,给出正确的运行结果() PROGRAM mx(input,output); VAR R,s,t:integer; PROCEDURE change(a,b:integer); VAR T:integer; BEGIN A:=3*a; B:=2*b; T:=a+b; End; BEGIN R:=2;s:=4;t:=6; Change(r,s); Writeln(‘r=’,r,’s=’,s,’t=’,t)End.A、r=2 s=4 t=6B、r=2 s=4 t=14C、r=6 s=8 t=6D、r=6 s=8 t=14
增加列表框的HTML代码是()A、input type=submit/input B、textarea name="textarea"/textarea C、select multiple/select D、input type=checkbox/input
which one of the following statements would lee include in an agent to limit the documents processed by the agent to those for which the value of the type field is "action"? ()A、FIELD Type :="action" B、SELECT Type ="action" C、SELECT Type :="action " D、@if (type="action";@success;@failure)
下面SQL语句都使用了聚合函数,其中选项()存在错误。A、SELECT MIN(au_lname) FROM authorsB、SELECT ADD(ytd_sales+1) FROM titlesC、SELECT type,MAX(price) FROM titles GROUP BY type ORDER BY typeD、SELECT COUNT(*) ,avg(price) FROM titles WHERE advance $1000
现有书目表book,包含字段:价格price(float),类别type(char);现在查询各个类别的平均价格、类别名称,以下语句正确的是()。A、select avg(price),type from book group by typeB、select count(price),type from book group by priceC、select avg(price),type from book group by priceD、select count(price),type from book group by type
Given the following function: CREATE FUNCTION emplist ( ) RETURNS TABLE ( id CHAR(6) , firstname VARCHAR(12) , lastname VARCHAR(15) ) LANGUAGE SQL BEGIN ATOMIC RETURN SELECT EMPNO, FIRSTNME, LASTNAME FROM EMPLOYEE WHERE WORKDEPT IN ('A00', 'B00'); END How can this function be used in an SQL statement?A、SELECT TABLE(EMPLIST()) FROM EMPLOYEEB、SELECT TABLE(EMPLIST()) AS t FROM EMPLOYEEC、SELECT EMPLIST(id, firstname, lastname) FROM EMPLOYEED、SELECT id, firstname, lastname FROM TABLE(EMPLIST()) AS t
单选题分析下面的PASCAL程序,给出正确的运行结果() PROGRAM mx(input,output); VAR R,s,t:integer; PROCEDURE change(a,b:integer); VAR T:integer; BEGIN A:=3*a; B:=2*b; T:=a+b; End; BEGIN R:=2;s:=4;t:=6; Change(r,s); Writeln(‘r=’,r,’s=’,s,’t=’,t)End.Ar=2 s=4 t=6Br=2 s=4 t=14Cr=6 s=8 t=6Dr=6 s=8 t=14
单选题Which of the following is the best way to combine sentences 2 and 3 (reproduced below)?They simply select the candidate by picking the one whose personality they like the most. They don't realize that choosing a leader is a much more serious task than that.AThey don't realize that choosing a leader is more serious than that, selecting the one whose personality they like the most.BSelecting the one that has the personality they like most, they don't realize that it’s more serious than that.CNot realizing how serious a task it is to choose a leader, they simply select the candidate whose personality they like most.DBecause of not realizing how serious it is choosing a leader, they simply select the candidate whose personality they like most.EBecause they simply select the candidate with the personality they like the most, they don't realize that choosing a leader is more serious than that.