61. 经销商关系模式为E (Comp,Ph),其中Comp表示经销商公司名称,Ph表示经销商的电话号码。要求将下面的SQL语句补充完整,使其可以查询电话区号为025的所有经销商的公司名称、电话号码。 SELECT Comp,Ph FROM E WHERE ______。
A.Ph='025'
B.substring(Ph,1,3)='025'
C.substring(Ph,1,2,3)='025'
D.Ph like'025*'
A B C D
B
[解析] 题目中要查询的是电话区号为“025”的所有经销商的公司名称与电话号码,查询语句就要检查电话号码的前三位是不是“025”,是的话就调出经销商的信息。可采用两种方法,一是利用子字符串,一是利用搜索子字符串: SELECT Comp,Ph FROM E WHERE substring(Ph,1,3)='025'; substring的语法结构为substring(表达式、截取的起始位置、截取长度) SELECT Comp,Ph FROM E WHERE Ph like'025%': 在SQL中,用“%”而不是“*”来表示任意长度的字符串。限制条件可以解释为“当电话号码前3位是025”。
71. Information engineering emphasizes a modeling tool called ______ relationship diagrams.
A.entity
B.class
C.state
D.sequence
A B C D
A
[解析] 知识工程强调的是一种被称为实体关系图的模型工具。
72. The most common query language is______.
A.C
B.Java
C.perl
D.SQL
A B C D
D
[解析] 最常用的结构化查询语言是SQL。
73. E-mail is a(n) ______ message delivery system that allows information such as typed messages and multimedia to be sent to individual compmer users.
A.graphic-based
B.char-based
C.web-based
D.text-based
A B C D
D
[解析] 电子邮件是一种基于文本的消息传递系统,它能够支持向个人计算机用户发送文本和多媒体消息。
74. The high-speed data services for the interconnection of computer networks are usually referred to as ______ connections.
A.LANs
B.MANs
C.WANs
D.ATM
A B C D
A
[解析] 计算机网络互连的高速数据服务通常是指局域网的连接。
75. A(n) ______ document is an interlinked system of documents in which a user may iump from one document to another in a nonlinear,associative way.