摘要:
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 阅读全文
摘要:
nginx同时支持GB2312和UTF-8,将“UTF-8”改为“ISO-88509-1” server { listen 80; server_name localhost; charset ISO-88509-1; } 阅读全文