بتاريخ: 24 ديسمبر 200520 سنة comment_55270 Q. Write a query to display the last_name and hire_date of any employee in the same department as Zlotkey تقديم بلاغ
بتاريخ: 4 يناير 200620 سنة comment_56625 select ename,lname from emp where deptno=(select deptno where ename='Zlotkey' from emp);ما جربتها لكن اذكر انه الصيغة بالطريقة الحالية تقديم بلاغ
بتاريخ: 5 يناير 200620 سنة comment_56719 select ename,lname from emp where deptno=(select deptno where ename='Zlotkey' from emp);ما جربتها لكن اذكر انه الصيغة بالطريقة الحالية56625[/snapback] كلام سليم ..تعديل بسيط فقط في الـ subquery .. وفي الـ columns select last_name, hire_date from emp where deptno = ( select deptno from emp where ename = 'Zlotkey') وانتبه للـ letters case ..بالتوفيق تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.