Hi All,
i have a query...
why does the below sql query ie (a) returns no row, while the statement (b) displays rows
(a) select * from sri where ename='%AME%';
----->no rows selected
(b) select * from sri where ename='JAMES';
--->
EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO
----- ---------- --------- ---------- --------- ---------- ---------- ----------
7900 JAMES CLERK 7698 03-DEC-81 950 30


