In the relational model condition, I have to specify the table prefix, am I right?
Example: SELECT c.nome, c.idade, a.nome, a.idade FROM
...
What I wanted to know is if you can not do something like this:
SELECT c(nome, idade), a(nome, idade) FROM
...
Can you give this "streamlined" code, or is it the only way to prefix everything?