摘要: 1 DO $$ 2 DECLARE 3 tbl_name text; 4 BEGIN 5 FOR tbl_name IN 6 SELECT table_name 7 FROM information_schema.tables 8 WHERE table_schema = 'public' 9 LO 阅读全文
posted @ 2024-02-28 17:27 Thenext 阅读(16) 评论(0) 推荐(0) 编辑
摘要: nginx同时支持GB2312和UTF-8,将“UTF-8”改为“ISO-88509-1” server { listen 80; server_name localhost; charset ISO-88509-1; } 阅读全文
posted @ 2024-02-28 09:22 Thenext 阅读(117) 评论(0) 推荐(0) 编辑