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