博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
订单暂挂问题sql解决:
阅读量:5294 次
发布时间:2019-06-14

本文共 606 字,大约阅读时间需要 2 分钟。

--
-查询请购单的状态
select
 
*
  
from
 po_requisition_headers_all por
 
where
 por.requisition_header_id 
=
 
63578
;
 
--
-修改请购单状态为未提交审批
update
 po_requisition_headers_all porh
   
set
 porh.authorization_status 
=
 
'
INCOMPLETE
'
 
where
 porh.requisition_header_id 
=
 
63578
;
 
--
-查询采购单状态
select
 
*
  
from
 po_headers_all aa
 
where
 aa.po_header_id 
in
 (
20430
20431
20306
); 
--
-修改采购单状态为未审批
update
 po_headers_all aa
   
set
 aa.wf_item_type         
=
 
null
,
       aa.wf_item_key          
=
 
null
,
       aa.approved_flag        
=
 
null
,
       aa.authorization_status 
=
 
null
 
where
 aa.po_header_id 
in
 (
20430
20431
);

转载于:https://www.cnblogs.com/zqmingok/archive/2011/08/14/2138093.html

你可能感兴趣的文章
Java基础--面向对象编程4(多态)
查看>>
CSS
查看>>
shell 管道和tee使用时获取前面命令返回值
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
[TypeScript] Understanding Generics with RxJS
查看>>
一、基础篇--1.3进程和线程-基本概念
查看>>
Linux kernel ‘ioapic_read_indirect’函数拒绝服务漏洞
查看>>
WordPress GRAND FlAGallery插件“s”跨站脚本漏洞
查看>>
如何组织一个高效的开发团队
查看>>
.NET多语言切换,配置
查看>>
Python学习之路_day_03(逻辑运算与数据类型)
查看>>
ACM模板——次短路及K短路
查看>>
Internet History, Technology and Security (Week5.2)
查看>>
20个很有用的PHP类库
查看>>
java 中间 final修饰符
查看>>
UVa156 Ananagrams(映射map)
查看>>
数据库三大范式,我的理解
查看>>
fltk demo
查看>>
10分钟物联网设备接入阿里云IoT平台
查看>>