2017-09-26 47 views
0

這是我第一次在mysql中創建存儲過程。錯誤代碼:1172.結果包含多行[MySQL]

它所做的是,

first- get count of all records 

second- loop through that table 1 by 1 

third- compare each entry if it is a duplicate 

fourth- insert duplicate in a temporary table 

last- display duplicates 

它是在100-200項上更大的記錄高達500+(有時25K)正常工作,它拋出一個消息

錯誤代碼:1172.結果由多個行組成

我已經使用了這個問題,但沒有人(答案)幫我解決我的問題。

請把我的腳本

BEGIN 

DECLARE n INT DEFAULT 0; 
DECLARE i INT DEFAULT 0; 

DECLARE i_sku VARCHAR(255); 
DECLARE i_concatenated_attributes MEDIUMTEXT; 

DECLARE f_sku VARCHAR(255); 
DECLARE f_offer_type VARCHAR(255); 
DECLARE f_name VARCHAR(255); 
DECLARE f_product_owner VARCHAR(255); 
DECLARE f_listing_city VARCHAR(255); 
DECLARE f_listing_area VARCHAR(255); 
DECLARE f_price DOUBLE; 
DECLARE f_bedrooms INT; 
DECLARE f_building_size INT; 
DECLARE f_land_size INT; 
DECLARE f_concatenated_attributes MEDIUMTEXT; 
DECLARE f_duplicate_percentage INT; 

SELECT COUNT(*) FROM unit_temp_listing INTO n; 
CREATE TEMPORARY TABLE IF NOT EXISTS temp_temp (dup_sku VARCHAR(255), dup_percentage INT, attribs MEDIUMTEXT); 
SET i=0; 
WHILE i<n DO 
    -- Get all unit listings (one by one) 
    SELECT 
    sku, concat_ws(',',offer_type,name,product_owner,listing_city,listing_area,price,ifnull(bedrooms,0),ifnull(building_size,0),ifnull(land_size,0)) as concatenated_attributes 
INTO i_sku, i_concatenated_attributes 
FROM unit_temp_listing 
limit 1 offset i; 
-- Compare one by one (sadla) 
SELECT 
    f.sku, f.offer_type, f.name, f.product_owner, f.listing_city, f.listing_area, f.price, f.bedrooms, f.building_size, f.land_size, 
    levenshtein_ratio(concat_ws(',',f.offer_type,f.name,f.product_owner,f.listing_city,f.listing_area,f.price,ifnull(f.bedrooms,0),ifnull(f.building_size,0),ifnull(f.land_size,0)),i_concatenated_attributes) as f_duplicate_percentage, 
    concat_ws(',',f.offer_type,f.name,f.product_owner,f.listing_city,f.listing_area,f.price,ifnull(f.bedrooms,0),ifnull(f.building_size,0),ifnull(f.land_size,0)) as fconcatenated_attributes 
INTO f_sku, f_offer_type, f_name, f_product_owner, f_listing_city, f_listing_area, f_price, f_bedrooms, f_building_size, f_land_size, f_duplicate_percentage, f_concatenated_attributes 
FROM unit_temp_listing f 
WHERE substring(soundex(concat_ws(',',offer_type,name,product_owner,listing_city,listing_area,price,ifnull(bedrooms,0),ifnull(building_size,0),ifnull(land_size,0))),1,10) = substring(soundex(i_concatenated_attributes),1,10) 
    AND levenshtein_ratio(concat_ws(',',offer_type,name,product_owner,listing_city,listing_area,price,ifnull(bedrooms,0),ifnull(building_size,0),ifnull(land_size,0)),i_concatenated_attributes) > 90 
    AND f.sku != i_sku; 
-- INSERT duplicates 
IF(f_sku IS NOT NULL) THEN 
    INSERT INTO temp_temp (dup_sku, dup_percentage, attribs) VALUES (f_sku, f_duplicate_percentage, f_concatenated_attributes); 
    SET f_sku = null; 
    SET f_duplicate_percentage = null; 
    SET f_concatenated_attributes = null; 
END IF; 
SET i = i + 1; 
END WHILE; 
SELECT * FROM temp_temp; 
DROP TABLE temp_temp; 
End 

什麼問題看看嗎?

回答

0

你好,我的開發夥伴我已經解決了我的問題,我想在這裏分享。

問題是,我的SECONDSELECT語句在WHILE循環內返回多行。我嘗試使用CURSOR,但我仍然收到錯誤消息。於是,我把我的那個第二SELECT聲明INSERT語句中這樣

INSERT INTO table_name (columns, ...) SELECT_STATEMENT 

,然後,問題解決了!但如果有人有一個想法來優化我的查詢請幫助我。我必須處理20k +記錄,但由於執行時間過長,我只能在15-20分鐘內處理500個記錄。

謝謝你的18個意見(在撰寫本文時)。

快樂編碼!