SQL 2000 - Query Analyser
Hi All,
I used enterprise manager to generate this code. Can anyone please explain why it generates "COLLATE Latin1_General_CI_AS" ? as I have no idea what it is.
When I do the same query on another database, it does not generate that.
This is the query below:
Many thanks.
Michael
Hi All,
I used enterprise manager to generate this code. Can anyone please explain why it generates "COLLATE Latin1_General_CI_AS" ? as I have no idea what it is.
When I do the same query on another database, it does not generate that.
This is the query below:
Code:
SELECT VC_Definitions.Type, COUNT(tbDVLACensus_Anonymised_UsedTransaction.intDVLACensus_AnonymisedID)
FROM tbDVLACensus_Anonymised_UsedTransaction LEFT OUTER JOIN
VC_Definitions ON tbDVLACensus_Anonymised_UsedTransaction.strTaxCode = VC_Definitions.Tax COLLATE Latin1_General_CI_AS AND
tbDVLACensus_Anonymised_UsedTransaction.strBodyCode = VC_Definitions.Body COLLATE Latin1_General_CI_AS
GROUP BY VC_Definitions.Type
Many thanks.
Michael