Click here to Skip to main content
15,904,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SQL
Select Student_ID,SName,Course,Branch,Year,Semester,Section,Fee from ExamEntry1 where 
Course='B-TECH'and Branch='CSE' and Year ='III' and semester='I' and Section='A' and
Student_ID not in(select StudentID from StudentFeeDetails)

I got this error -

Cannot resolve the collation conflict between "Latin1_General_CI_AS" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation.

What does this means?
Posted
Updated 22-Nov-11 23:57pm
v2

1 solution

When you create a table you can set Collate Values for every column, the Collate is used to specify what kind of data sensivity you want for the data in this column, (like Case sensetive, Japanese KANA characters, etc). while comparing 2 columns if the collate value is not matching, how can you compare these 2 columns ?

check the below link to get the solution.

http://blog.sqlauthority.com/2007/06/11/sql-server-cannot-resolve-collation-conflict-for-equal-to-operation/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900