From 19a3da757f9087615bc0d42d364bd835e40c53fd Mon Sep 17 00:00:00 2001 From: chrislu Date: Thu, 4 Sep 2025 08:08:40 -0700 Subject: [PATCH] Update README.md --- postgres-examples/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/postgres-examples/README.md b/postgres-examples/README.md index 93f76e378..095eda89c 100644 --- a/postgres-examples/README.md +++ b/postgres-examples/README.md @@ -159,8 +159,7 @@ SHOW TABLES; -- Describe table structure DESCRIBE my_topic; --- or -DESC my_topic; +-- or use the shorthand: DESC my_topic; -- Basic select SELECT * FROM my_topic;