SQL Server comparison of inter-database fields with different collations

Source: Internet
Author: User

The fields of the different collations cannot be compared directly. Prompt: Unable to resolve collation violation for equal to operation. You can cast a field into a collation so that it can be compared. Example:

--------------------------------------

SELECT *
From Tab1 a left OUTER JOIN
TaB2 u on a.admissionno = U.username COLLATE chinese_prc_ci_as

--------------------------------------

Where TAB2 is a table in another database, a view with the same name is created in this database. This makes it possible to invoke a table in another database as if it were a table in this database. The database where the TAB1 resides is case-insensitive, and the database where the TAB2 resides is case-sensitive. COLLATE Chinese_prc_ci_as casts the collation to case insensitive.

Attached (Chinese database General collation Modification):

COLLATE chinese_prc_ci_as
--Case insensitive
COLLATE chinese_prc_cs_as
--Case sensitive

SQL Server comparison of inter-database fields with different collations

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.