it was the name of the plant where the study was conducted
it was the name suggested by the Harvard researchers
it was the name of the principal experimenter
There were Hawthorne plants growing at Western Electric where the study was conducted.
第1题:
哪些是正确的 like 运算表达式?
A.select * from net_46 where s_name like ’晓’
B.select * from net_46 where s_name like ’&晓&’
C.select * from net_46 where s_name like ’$晓$’
D.select * from net_46 where s_name like ’%晓%’
第2题:
第3题:
public class Plant { private String name; public Plant(String name) { this.name = name; } public String getName() { return name; } } public class Tree extends Plant { public void growFruit() { } public void dropLeaves() { } } Which is true?()
第4题:
You need to display the last names of those employees who have the letter "A" as the second character in their names. Which SQL statement displays the required results? ()
第5题:
Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25) HIRE_DATE DATE Which UPDATE statement is valid?()
第6题:
You need to implement an authentication method on SQL4. The TravelOnline database will be accessed through a Web services application. You need to make the authentication method as secure as possible.What should you do?()
第7题:
The code will compile without changes.
The code will compile if public Tree() { Plant(); } is added to the Tree class.
The code will compile if public Plant() { Tree(); } is added to the Plant class.
The code will compile if public Plant() { this(”fern”); } is added to the Plant class.
The code will compile if public Plant() { Plant(”fern”); } is added to the Plant class.
第8题:
UPDATE employees SET first_name = 'John' SET last_name = 'Smith' WHERE employee_id = 180;
UPDATE employees SET first_name = 'John', SET last_name = 'Smoth' WHERE employee_id = 180;
UPDATE employee SET first_name = 'John' AND last_name = 'Smith' WHERE employee_id = 180;
UPDATE employee SET first_name = 'John', last_name = 'Smith' WHERE employee_id = 180;
第9题:
SELECT * FROM st_info WHERE st_name LIKE ´王%´
SELECT * FROM st_info WHERE st_name LIKE ´王_´
SELECT * FROM st_info WHERE st_name=´王%´
SELECT * FROM st_info WHERE st_name=´王__´
第10题:
SELECT price FROM book WHERE book_name=“数据库*”
SELECT price FROM book WHERE book_name LIKE“数据库*”
SELECT price FROM book WHERE book_name=“数据库%”
SELECT price FROM book WHERE book_name LIKE“数据库%”
第11题:
SELECT &1, &2 FROM &3 WHERE last_name = '&8';
SELECT &1, '&2' FROM &3 WHERE '& last_name = '&8';
SELECT &1, &2 FROM &3 WHERE last_name = '&8';
SELECT &1, '&2' FROM EMP WHERE last_name = '&8';
第12题:
查询student数据库中grade表中学生姓名st_name含有“国”的全部学生情况,可用什么命令? (1.0分) [单选.]
A. select * from grade where st_name like ‘国’; B. select * from student where st_name like ‘国’; C. select * from grade where st_name= ‘国’; D. select * from grade where st_name like ‘%国%’;
答案:D
第13题:
第14题:
下列哪个语句查出雇员表(employees)里的雇员名字(ename)是‘SMITH’的信息,并且给雇员名字(ename)列定义一个别名Name()。
第15题:
Examine the description of the EMPLOYEES table: EMP_ID NUMBER(4) NOT NULL LAST_NAME VARCHAR2(30) NOT NULL FIRST_NAME VARCHAR2(30) DEPT_ID NUMBER(2) Which statement produces the number of different departments that have employees with last name Smith?()
第16题:
Which SQL statement accepts user input for the columns to be displayed, the table name, and WHERE condition? ()
第17题:
下列哪些SQL语句可以查询出User表中name为张三的记录()。
第18题:
It was the first documented evidence of the psychological effects on doing work.
The Hawthorne study continued for five years.
They found that the workers responded not to the level of lighting but to the fact that other work conditions were not favorable.
The study changed the focus from economics to a multifaceted approach.
第19题:
Create an HTTP endpoint with NTLM authentication, and create a service principal name (SPN).
Create an HTTP endpoint with digest authentication, and create a service principal name (SPN).
Create an HTTP endpoint with integrated authentication, and create a service principal name (SPN).
Create an HTTP endpoint with Kerberos authentication.
第20题:
SELECT * FROM User WHERE name = ’张三’
SELECT * FROM User WHERE name = ’张三’ LIMIT 0,1
SELECT * FROM User WHERE name LIKE ’张三’
SELECT * FROM User WHERE name LIKE ’%张三%’
第21题:
SELECT last_name FROM EMP WHERE last_ name LIKE '_A%';
SELECT last_name FROM EMP WHERE last name ='*A%'
SELECT last_name FROM EMP WHERE last name ='_A%';
SELECT last_name FROM EMP WHERE last name LIKE '*A%'
第22题:
select employeesno,ename Name,job from employees where ename=‘SMITH’
select employeesno,ename ‘Name’,job from employees where ename=SMITH
select employeesno,ename “Name”,job from employees where ename=‘SMITH’
select employeesno,ename ‘Name’,job frome mployees wheree name=‘SMITH’
第23题:
SELECT COUNT (*) FROM employees WHERE last _name='smith';
SELECT COUNT (dept_id) FROM employees WHERE last _name='smith';
SELECT DISTINCT (COUNT (dept_id) FROM employees WHERE last _name='smith';
SELECT COUNT (DISTINCT dept_id) FROM employees WHERE last _name='smith';
SELECT UNIQE (dept_id) FROM employees WHERE last _name='smith';