摘要:
准备交货单打印的用,SAP将交货单下传至WMS,然后再打印单据,配货出库。 INF_BILL_OSH是 接口表。 INF_BILL_OSH_upload是接口上传表 SELECT * FROM INF_BILL_OSH_upload WHERE ROWNUM<1000 and created_tim 阅读全文
摘要:
修改完postgresql.conf文件,需要重启数据库,再执行以下语句验证下是否生效; select name,setting from pg_settings where name='wal_level'; select name,setting from pg_settings where n 阅读全文
摘要:
-- 计算当前时间戳 SELECT right(cast(floor(extract(epoch from now())*1000)/cast(telephone as dec) as varchar),6) from wechat_person --当前时间戳除以7,转换为字符串,取右6位 SEL 阅读全文