mysql> SELECT 6_HTS09X.id_6 FROM 6_HTS09X LIMIT 20; +------+ | id_6 | +------+ | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | | 7 | | 8 | | 9 | | 10 | | 11 | | 12 | | 13 | | 14 | | 15 | | 16 | | 17 | | 18 | | 19 | | 20 | +------+ 20 rows in set (0.00 sec)
SELECT 6_HTS09X.id_6,6_HTS09X.STYLE AS 'c.1' FROM 6_HTS09X LIMIT 20;
+------+-----------+
| id_6 | c.1 |
+------+-----------+
| | 1201
| | 1303
| | 1401
| | 2001
| 5 | 2001AW
| 6 | 2001BP
| 7 | 2001GEO
| 8 | 2001HA
| 9 | 2001LA
|10 | 2001LG
| 11 | 2001ORG
|2 | 2001P
|3 | 2001P
|14 | 2001SA
| 15 | 2001STAW
| 16 | 2001SUN
| 17 | 2001VIVA
| | 2007
| 19 | 2007ORG
| | 2065
+------+-----------+
20 rows in set (0.00 sec)
[\CODE]
mysql> SELECT 6_HTS09X.STYLE AS 'c.1' FROM 6_HTS09X LIMIT 20;
+-----------+
| c.1 |
+-----------+
|
|
|
|
|01AW
|01BP
|001GEO
|01HA
|01LA
|01LG
|001ORG
|1P
|1P
|01SA
|2001STAW
|001SUN
|2001VIVA
|
|007ORG
|
+-----------+
20 rows in set (0.00 sec)
Using all other fields in any combination are fine. Only when the c1 field is used is there a problem.
I do have an xlxs file for it, the original source document, which I've tried to clean up but maybe missed something.
How should I proceed?
Besides rubbing a lamp, what should I do?| Subject | Written By | Posted |
|---|---|---|
| Data mismatch xxx!=xxx | ed ziffel | 08/31/2011 08:43AM |
| RESOLVED | ed ziffel | 08/31/2011 09:58AM |
Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.