This commit is contained in:
vipg
2025-11-19 16:51:52 +08:00
parent b2882ed70a
commit 8a8dd48726
3 changed files with 72 additions and 50 deletions

View File

@@ -98,9 +98,9 @@ BEGIN
CREATE OR REPLACE VIEW country_info_view AS
SELECT
u.id AS country_id,
n.name AS country_name, -- 国家名称
c.code AS country_code, -- 国家代码
f.flag AS country_flag -- 国旗信息
n.name AS name, -- 国家名称
c.code AS code, -- 国家代码
f.flag AS flag -- 国旗信息
FROM
country u
LEFT JOIN