题目详情

假设有两个数据库表isurance和 employee分别记录了某地所有工作人员的社保信息和基本信息:

insurance(id,isvalid),各属性分别表示身份证号、社保是否有效,其中isvalid=1表示社保有效,isvalid=0表示社保无效。

employee(id,name,salay,islocal),各属性分别表示身份证号、姓名、每月工资,户口是否在当地,其中islocal=1表示户口在当地,islocal=0表示户口不在当地。

2021年农历新年,为防控疫情,鼓励留在工作地过年,决定对社保有效且户口不在当地的人群发放津贴。可筛选出满足补贴发放条件人员的SQL语句为( )。

  • A.SELECT * FROM employee, insurance WHERE insurance.id = employee.id AND insurance.isValid=1
  • B.SELECT * FROM employee, insurance WHERE insurance.isvalid= 1 AND employee.islocal=0
  • C.SELECT * FROM employee, insurance WHERE insurance.id = employee.id AND insurance.isvalid= 1 AND employee.islocal=0
  • D.SELECT * FROM employee, insurance WHERE insurance.id = employee.id AND insurance.isvalid= 1 AND employee.islocal=1

正确答案及解析

正确答案
C
解析

select的标准语法结构:

select 列名 from 表名 where 条件 group by 分组字段 having 条件 order by 排序字段。

题干中已经说明:isvalid=1表示社保有效;islocal=0 表示不在当地。所以where的条件应该是insurance.isvalid=1 and employee.islocal=0 and insurance.id= employee.id

所以答案为C。

包含此试题的试卷

你可能感兴趣的试题

单选题

Advancements in ( )have contributed to the growth of the automotive industry through the creation and evolution of self-driving vehicles.

  • A.Artificial Intelligence
  • B.Cloud Computing
  • C.Internet of Things
  • D.Big Data
查看答案
单选题

In project human resource management , ( )is not a source of power for the project manager.

  • A.referent power
  • B.expert power
  • C.reward power
  • D.audit power
查看答案
单选题

At the project establishment stage , the feasibility study mainly includes techinical feasibility analysis , ( ), operation environment feasibility analysis and other aspects of feasibility analysis.

  • A.detail feasibility analysis
  • B.opportunity analysis
  • C.economic feasibility analysis
  • D.risk analysis
查看答案
单选题

( )is a grid that shows the project resources assigned to each work package.

  • A.Stakeholder engagement assessment matrix
  • B.Requirements traceability matrix
  • C.Probability and impact matrix
  • D.Responsibility assignment matrix
查看答案
单选题

Xinhua News Agency reported in January 2022,Chian will further promote the developmet of a digital economy during the 14th Five-Year Plan eriod(2021-2025). The plan also emphasized industrial ( )transformation.

  • A.digital
  • B.networking
  • C.intelligentize
  • D.informatization
查看答案

相关题库更多 +