C
Col
I have an Access front end to a SQL Server 2005 database using ODBC linked
tables. There appears to be a problem when using the euro symbol in queries.
SELECT *
FROM tbl_Datatable
WHERE (tbl_Datatable.strPRICE)='?40'; (the ? should be a euro symbol
Alt+0128. it appears that even just posting causes the same problem)
This query returns nothing although there are many entries with a strPRICE
of '?40'
SELECT *
FROM tbl_Datatable
WHERE (tbl_Datatable.strPRICE)='$40';
This query returns all with a strPRICE of '$40'
How do I use the symbol in queries?
Regards
Colin
tables. There appears to be a problem when using the euro symbol in queries.
SELECT *
FROM tbl_Datatable
WHERE (tbl_Datatable.strPRICE)='?40'; (the ? should be a euro symbol
Alt+0128. it appears that even just posting causes the same problem)
This query returns nothing although there are many entries with a strPRICE
of '?40'
SELECT *
FROM tbl_Datatable
WHERE (tbl_Datatable.strPRICE)='$40';
This query returns all with a strPRICE of '$40'
How do I use the symbol in queries?
Regards
Colin