如何编写这个程序

时间:2011-03-31 09:24:06

标签: mysql stored-procedures

我有两个SQL查询。

查询1表示没有定义产品的度量

查询2表示没有正确设置productid的价格详细信息。

现在,我必须以这样的方式编写程序 为

每一件产品都应该表明出了什么问题。

ex:001测量未定义,价格检查
     002价格检查
     003测量未定义

到目前为止我写了

DELIMITER //       
DROP PROCEDURE IF EXISTS dc//

CREATE PROCEDURE dc()   
BEGIN                   

SELECT @row := @row + 1 AS "S.NO",product_id,internal_name,quantity_uom_id 
FROM product,(SELECT @row := 0) r where quantity_uom_id is null; 

   select @row := @row + 1 AS "S.NO",product_id,internal_name 
   from product,(SELECT @row := 0)r                           
   where product_id
   not in(select product_id from product_price where <br> product_price_type_id='DEFAULT_PRICE'  and Product_price_purpose_id='PURCHASE' and <br> 

0 个答案:

没有答案