If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > Please find the equivalent query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-02-11, 00:51
mohdshahid mohdshahid is offline
Registered User
 
Join Date: Dec 2011
Posts: 3
Please find the equivalent query

Select empid empname from employee where empclass is not null and empclass <> ' ' and empclass <>'';

this query is perfectly run in mysql.

But in oracle it return no records found.beacuse oracle does not support empty string.
Please provide me the equivalent query for oracle.
Reply With Quote
  #2 (permalink)  
Old 12-02-11, 03:34
aflorin27 aflorin27 is offline
Registered User
 
Join Date: Apr 2008
Location: Iasi, Romania
Posts: 317
empclass IS NOT NULL AND TRIM(empclass) IS NOT NULL
__________________
Florin Aparaschivei
Iasi, Romania
Reply With Quote
  #3 (permalink)  
Old 12-02-11, 09:15
mohdshahid mohdshahid is offline
Registered User
 
Join Date: Dec 2011
Posts: 3
Thanks for your response aforin
but i want common query for both oracle and mysql having all the three conditions.
Reply With Quote
  #4 (permalink)  
Old 12-02-11, 10:04
aflorin27 aflorin27 is offline
Registered User
 
Join Date: Apr 2008
Location: Iasi, Romania
Posts: 317
Hm ... you want the same query to run in both MySQL and Oracle?
__________________
Florin Aparaschivei
Iasi, Romania
Reply With Quote
  #5 (permalink)  
Old 12-02-11, 10:11
mohdshahid mohdshahid is offline
Registered User
 
Join Date: Dec 2011
Posts: 3
yes aflorin
Reply With Quote
  #6 (permalink)  
Old 12-05-11, 03:09
aflorin27 aflorin27 is offline
Registered User
 
Join Date: Apr 2008
Location: Iasi, Romania
Posts: 317
I don't know mySQL - what exactly returns TRIM(empty_string) in mySQL?
__________________
Florin Aparaschivei
Iasi, Romania
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On