Imagine I have a table like this one:
CREATE TABLE marcas
(
id_marca integer,
marca character varying
));
I would like to make a query but get the value in every field empty.
I know that could solve it like this:
SELECT '' as id, '' as marca FROM marcas
The problem is that i have plenty of tables and some of them have more than 100 fields... I need a SQL statement that could get all the row fields of a table but empty and in an easy way...