Sybase Stored Procedure Problems

Source: Internet
Author: User

Q: SYBASEStored ProcedureWhy is this sentence not executed?
Select @ nSerialNo = serialno from schedule where phonenum = @ strPhoneNum and type = @ nType
If @ rowcount = 0
Begin
...
End
Else
Begin
...
End
The aboveSelectThe result is an empty record set. When a stored procedure is executed to an empty record set, it will return?
A:If exists (select @ nSerialNo = serialno from schedule where phonenum = @ strPhoneNum and type = @ nType)ThisStatementIs there a problem with the logic?
If existsIs it generally used to determine whether a similar record exists? Do you want to assign values to existing results now? In fact, it is better to writeIf existsSelect 1 from schedule where phonenum = @ strPhoneNum and type = @ nType)
Check whether such a record exists and perform corresponding 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.