From a862fc46660238306f004cbd119c09ab28d68dd9 Mon Sep 17 00:00:00 2001 From: LJH <1251294066@qq.com> Date: Tue, 29 Jul 2025 10:17:12 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20psql=E5=9F=BA=E6=9C=AC?= =?UTF-8?q?=E9=85=8D=E7=BD=AE.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- psql基本配置.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/psql基本配置.md b/psql基本配置.md index ffd4834..85f96de 100644 --- a/psql基本配置.md +++ b/psql基本配置.md @@ -6,9 +6,9 @@ ## 真正的角色用户进入psql的方式如下 `psql -U myuser -d mydb -h localhost` -# 进入数据库后修改超级账号的密码 +## 进入数据库后修改超级账号的密码 `ALTER USER postgres WITH PASSWORD '123456';` -# 通过数据库命令创建第一个数据库 +## 通过数据库命令创建第一个数据库 `CREATE DATABASE face_db;`