2 2 votes Write SQL query to show all employees hired on June 4,1984 (non-default format) emp(empno,ename,job,mgr,hiredate,sal,comm,deptno) Databases sql databases query + – Subhrangsu 838 views answer comment Share Follow Print See 1 comment 1 1 comment reply Kabir5454 commented Jun 18, 2022 reply Follow flag can you give the schema of the table? 1 1 replyShare Please log in or register to add a comment.
0 0 votes SELECT * FROM emp WHERE hiredate = “1984-06-04” mostacholoco answered Jun 20, 2022 mostacholoco comment Share Follow 0 reply Please log in or register to add a comment.