SQL SERVER If you determine that the text type data is not empty

Source: Internet
Author: User

The data type setting for a field remark is set to Varcharr (255), which is later considered to be defined as the text type for extensibility, but the SQL statement is an error.
SQL statements:
SELECT * from TABLE WHERE ISNULL (Remark, ') <> "
Error message: Data type text and varchar are incompatible in the not equal to operator.
Workaround: Use the datalength (field name) function
SELECT * from TABLE WHERE ISNULL (datalength (Remark), 0) >0

Note: 1. Datalength to varchar,varbinary,text,image,nvarchar , and ntext Data types are particularly useful because these data types can store variable-length data.
2. The result of NULL datalength is null.

SQL SERVER If you determine that the text type data is not empty

Related Article

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.