i am working with postgresql but when i want to see tables with " show tables;" retool output this error " * error:"syntax error at or near "https"""
@ahmed_khalid you have to try this because "show tables;" is MySQL syntax, not PostgreSQL.
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public';
1 Like