Sybase stored Procedure Issues

Source: Internet
Author: User
Tags empty sybase

Q: Sybase stored procedures, why execution to this sentence is not executed

select @nSerialNo = serialno from schedule where phonenum= @strPhoneNum and type = @nType
if @@rowcount = 0
begin
...
end
else
begin
...
end

The select result above is an empty recordset, which is returned when the stored procedure executes to an empty recordset.

Answer: If exists (select @nSerialNo = Serialno from schedule where phonenum= @strPhoneNum and type = @nType) is there a problem with the logic of this statement?

If exists is typically used to determine if a similar record exists? Now you're going to assign the results of your existence? In fact, it's better to write if exists (select 1 from Schedule where phonenum= @strPhoneNum and type = @nType)

Determine if there is such a record, and perform the appropriate processing.

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.