بتاريخ: 4 ديسمبر 200718 سنة comment_117960 1- write a query to display the employee name and hiredate for all employees in the same department as Blake.Exclude Blake.2- Create a query to display the employee number and name for employees who earn more than the average salary.Sort the results in descending order of salary.3- write a query that will display the employee number and name for all employees who work in a department with any employee whose name contains a T.4- display the employee name,department number,and job title for all employees whose department location is Dallas.5- display the employee name and salary of all employees who report tp King.6- display the department number,name,and job for all employees in the Sales department. تقديم بلاغ
بتاريخ: 5 ديسمبر 200718 سنة كاتب الموضوع comment_117968 اين انتم يا اعضاء ؟! لماذا لا تردون علي ..انا اريد مساعتدكم هل من متطوع ؟! تقديم بلاغ
بتاريخ: 5 ديسمبر 200718 سنة comment_118019 السلام عليكمالسؤال الأول select empname,hiredate from emp where dept_id=(select dept_id from emp where initcap(empname) like 'Blake') and empname not like intcap(empname) السؤال الثانى select emp_id,enpname from emp where salary >(select avg(salary) from emp) order by salary desc السؤال الثالث select emp_id,enpname from emp where upper(empname) like'%T%' وسوف اكتب لك باقى الاجابات ان شاء الله وارجو من الأخوة الاعضاء التعليق على الاجابات والمراجع لتعم الفائدة تم تعديل 5 ديسمبر 200718 سنة بواسطة m_ahmed تقديم بلاغ
بتاريخ: 5 ديسمبر 200718 سنة كاتب الموضوع comment_118023 شكرااااااااااااا جزييييييييييلا لك يا اخي العزيييييييييز لقد اتعبتك معي .. تقديم بلاغ
بتاريخ: 5 ديسمبر 200718 سنة كاتب الموضوع comment_118025 هل من متطوع يكمل لي السؤال الرابع ؟! تقديم بلاغ
بتاريخ: 5 ديسمبر 200718 سنة comment_118029 اتفضل اخوي 4- display the employee name,department number,and job title for all employees whose department location is Dallas select Empname, depno,job_title from employee, department where deptlocation=dallas display the employee name and salary of all employees who report tp King- 5 select empname, salary from employee,salary where report tp=king display the department number,name,and job for all employees in the Sales department- 6 select DEPTNO, ENAME, EJOB FROM DEPARTMENT, EMPLOYEE WHERE DEPTNO=SALES تمنى تكون صحيحة لأني مبتدئة و اذا فيها خطأ ياريت التصحيح تقديم بلاغ
بتاريخ: 5 ديسمبر 200718 سنة كاتب الموضوع comment_118031 مشكووووووووووووووورهـ اختي " أسيمـ " .. جزاك اللهـ الف خير ع الحل ..والسموووحه ع الازعاج يا اختي .. تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.