3
I’m making the following select:
SELECT TABLE_NAME FROM USER_TABLES ORDER BY TABLE_NAME;
In this I have the name of the tables, the problem is that for each table I have a table_AUD, ex:
PESSOA
PESSOA_AUD
DOCUMENTO
DOCUMENTO_AUD
I wish you wouldn’t return the tables that have AUD, how can I do ?
Aren’t you confusing tables with columns? Do you want to select all columns of a table that do not contain
_AUD
right?– Miguel
Tables even @Miguel
– Roknauta