当前位置: 代码迷 >> 报表 >> 还有两个英文题,拜托解决办法
  详细解决方案

还有两个英文题,拜托解决办法

热度:162   发布时间:2016-05-05 07:32:48.0
还有两个英文题,拜托
QUESTION 
The employee table contains these columns: 
Last_name  Varchar2 (25) 
First_name  Varchar2 (25) 
Salary   Number7, 2 
 
You need to display the names of employees on more than an average salary of all employees. Evaluate the SQL statement.  
SELECT, LAST_NAME, FIRST_NAME from employee where salary< avg(salary); 
Which change should you make to achieve the desired results? 
A. Change the function in the Where clause.  
B. Move the function to the select clause and add a group clause.  
C. Use a sub query in the where clause to compare the average salary value.  
D. Move the function to the select clause and add a group by clause and a having 
clause.  
 
QUESTION  (    )
You have decided to permanently remove all the data from the STUDENT table and you need the table structure in the future. Which single command performs this? 
A. DROP TABLE student; 
B. TRUNCATE TABLE student; 
C. DELETE* FROM student; 
D. TRUNCATE TABLE student KEEP STRUCTURE; 
E. DELETE* FROM student KEEP STRUCTURE. 

------解决方案--------------------
怎么解释啊。
就这两个对啊。

或者你哪个部分不理解?

引用
建议你先自己试着解释一下这个,否则别人也根本不知道你目前已经懂了什么,到什么层次,到底是哪儿不懂。

写出你自己的理解,然后让别人来看你的理解是否正确。 否则别人解释过简单你还是理解不了,解释得过细,可能又是根本不必要。
  相关解决方案