T-SQL stored procedure: Get parent class pictures

Source: Internet
Author: User

If there is no image in the current category, the parent image is obtained until the image is found.

Create procedure w_category_getimg
@ PCID int
As
Declare
@ Cache_pcid int,
@ Imgcount int
Begin
Set @ cache_pcid = @ PCID;
Set @ imgcount = (select count (*) from w_categoryphotos where PCID = @ cache_pcid)
If (@ imgcount> 0)
Begin
Select * From w_categoryphotos where PCID = @ cache_pcid
End
Else
Begin
While @ imgcount = 0
Begin
Set @ cache_pcid = (select parentid from w_productcategorys where PCID = @ cache_pcid );
Set @ imgcount = (select count (*) from w_categoryphotos where PCID = @ cache_pcid );
If (@ imgcount = 1)
Begin
Select * From w_categoryphotos where PCID = @ cache_pcid
Break;
End
End
End
End

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.