0
Good afternoon!
I’m trying to insert to all users when there is no type entered for all users:
INSERT INTO USUARIO ( TIPO, PRIORITARIO)
SELECT '130', 'N'
FROM dual
WHERE not exists (SELECT *
FROM USUARIO
WHERE tipo = '130' );
but I’m not getting , some idea of how to do ?
Claudio, use the [Edit] button to make changes to the question and not the answers, or add a comment
– Denis Rudnei de Souza