摘要: 【SQL】 select attname as name, attnum as orderNum, col_description(attrelid,attnum) as remark from pg_attribute where attrelid='your table'::regclass a 阅读全文
posted @ 2022-08-19 05:25 不朽的飞翔 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 【SQL】 一行流方式: select count(*) from information_schema.table where table_schema='your schema' and table_type='BASE TABLE' and upper(table_name)=upper('y 阅读全文
posted @ 2022-08-19 05:21 不朽的飞翔 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 【代码】 #encoding=utf-8 import os os.popen("copy c:\\java8\\src.zip C:\\Users\\ufo\\Desktop\\target.rar") 【用途】 将Java打包后的jar文件拷贝到桌面上并改名,为FTP上传做准备。 【参考资料】 阅读全文
posted @ 2022-08-19 05:14 不朽的飞翔 阅读(513) 评论(0) 推荐(0) 编辑