Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 570 Bytes

sample.md

File metadata and controls

46 lines (30 loc) · 570 Bytes

run-sql:

  • show_query: True
  • port: 6543 ...

pandoc-run-postgres

Basic Usage

SeLeCT 1 AS TesT1

Do not show the query

SeLeCT * from pg_tables LIMIT 2;

Do not parse the query

SeLeCT * from pg_tables LIMIT 2;

Error


SELLLLLECT 1;

Do not show the result

SeLeCT * from pg_tables LIMIT 2;

Write a table

CREATE TEMPORARY TABLE tmp_121 AS SELECT 1;