
January 27th, 2012, 12:29 AM
|
 |
Contributing User
|
|
Join Date: Jul 2007
Location: Bangalore, India
|
|
Quote: | Originally Posted by mohdshahid Oracle Does Not Support Empty String.
|
Your understanding is wrong regarding how oracle handles Empty String.
Try this
Code:
Select Empid, Empname From Employee Where trim(Emclass) Is Not Null;
will work in both oracle and mysql.
|