SELECT..INTO...NO_DATA_FOUND and TOO_MANY_ROWS
Hi,
I've worked several years with Oracle, now I'm into mysql.
In Oracle I've got the situation:
Begin
SELECT author_last_name
INTO v_authName
FROM authors
WHERE author_state = v_auth_state;
// work with v_authname
When NO_DATA_FOUND
// do something
When TOO_MANY_ROWS then
// do something
END;
How can I translate (SELECT..INTO...NO_DATA_FOUND and TOO_MANY_ROWS) above situation to MySql?
Regards,
Paul
Subject
Views
Written By
Posted
SELECT..INTO...NO_DATA_FOUND and TOO_MANY_ROWS
13367
September 24, 2008 12:50AM
8087
October 23, 2008 11:29PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.