How to generate a Data Dictionary?

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

ความคิดเห็น • 8

  • @sqlanswers
    @sqlanswers  ปีที่แล้ว +1

    Have a question about databases? Feel free to drop it below!

  • @marilynsenaya8575
    @marilynsenaya8575 5 หลายเดือนก่อน

    does it work for postgres too?

    • @sqlanswers
      @sqlanswers  5 หลายเดือนก่อน

      For Postgres you could use something like this:
      SELECT
      t.table_schema AS schema_name,
      t.table_name,
      c.column_name,
      c.data_type,
      c.character_maximum_length,
      c.numeric_precision,
      c.is_nullable,
      c.column_default
      FROM
      information_schema.tables t
      JOIN
      information_schema.columns c
      ON
      t.table_name = c.table_name
      WHERE
      t.table_type = 'BASE TABLE'
      AND t.table_schema NOT IN ('information_schema', 'pg_catalog')
      ORDER BY
      t.table_schema, t.table_name, c.ordinal_position;

    • @marilynsenaya8575
      @marilynsenaya8575 5 หลายเดือนก่อน +1

      @@sqlanswers Thank you. I'll try it and get back to you. 😊

  • @brendonprophette8890
    @brendonprophette8890 5 หลายเดือนก่อน

    ????? paste it in the description or put a pastebin link in the description

    • @sqlanswers
      @sqlanswers  5 หลายเดือนก่อน

      Hi - Sorry, can you rephrase your question? I'm not sure what you are referring to. Thanks!

    • @brendonprophette8890
      @brendonprophette8890 5 หลายเดือนก่อน +1

      ​@@sqlanswerspaste the template from 1:20 and 2:40 in the description or a website like pastebin please 🥺🥺🥺

    • @sqlanswers
      @sqlanswers  5 หลายเดือนก่อน

      Ah, the queries. Sure, please see the description. Added there