PL/SQL (MOSC)

MOSC Banner

Record not retrived

in PL/SQL (MOSC) 4 commentsAnswered

Hi All,

Trying to write a join comparing a name column but the record is not retrieved. the NAme length is same. Not seeing any special characters.

CREATE TABLE TABLE1

NAME VARCHAR2(200);


INSERT INTO TABLE1

(NAME)

VALUES

('Ex Habriya (ferssdannd) GmaH');


INSERT INTO TABLE2

(NAME)

VALUES

('Ex Habriya (ferssdannd) GmaH');


Select A.NAME

FROM

TABLE1 A,TABLE2 B

WHERE A.NAME=B.NAME;


Please suggest how this can be fixed. I have other records with Strings which are retrieved fine. Not sure if it is due to "(" in the string.

Tagged:

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center