ORA-01427

Error: ORA-01427: single-row subquery returns more than one row

Causa: The outer query must use one of the keywords ANY, ALL, IN, or NOT IN to specify values to compare because the subquery returned more than one row.

Acción: Use ANY, ALL, IN, or NOT IN to specify which values to compare or reword the query so only one row is retrieved.

COMENTARIOS:

por Diana Lopez | 12/04/2016 02:40:44

RE: ORA-01427

select upper(substr(nombre,1,instr(nombre,)-1))nombre from prueba where nombre like(select upper(substr(nombre,instr(nombre,)+1))Snombre from prueba where nombre like (select upper(substr(nombre,instr(nombre,)+2, length(nombre)))apellido from prueba));