Sub select issue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:42:35Z http://stackoverflow.com/feeds/question/721108 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/721108/sub-select-issue 1 Sub select issue mish 2009-04-06T11:52:59Z 2009-07-30T20:12:44Z <p>Hi, I'm trying to do a subselect in SQL on an AS400 and getting a "Data conversion or data mapping error" - I'm pretty sure its to do with the way SQL is handling dates in the subselect (specifically it's changing the format by adding commas into a decimal field and it's getting confused when it does the next select) - could someone confirm this for me?? maybe suggest how I need to get round this problem??</p> <p>Basically, I have something like below, with dates as decimal and in this format: CCYYMMDD (ie if you just do a select on the dates they come out as CC,YYM,MDD). The date is coming from table3</p> <pre><code>SELECT * FROM TABLE1 A CROSS JOIN TABLE2 B LEFT OUTER JOIN (SELECT * FROM TABLE3 C LEFT OUTER JOIN TABLE4 D ON (blah) INNER JOIN TABLE5 E ON (blah) WHERE DATE &gt;= 20080101 AND DATE &lt;= 20090101 ) AS C ON (blah AND blah) </code></pre> http://stackoverflow.com/questions/721108/sub-select-issue/722176#722176 4 Answer by n8wrl for Sub select issue n8wrl 2009-04-06T16:24:13Z 2009-04-06T16:24:13Z <p>I have little and dated AS/400 experience, but your problem is classic divide and conquer.</p> <p>Isolate the sub-query - does it run ok by itself? Then start with table 1 and make sure the cross-query works Then add in the sub-query.</p> <p>I don't know if AS/400 supports it, but SQL Server's common table expressions are very helpful - basically locally-scoped views. I only mention it because you could create a view that was your sub-query for better understanding.</p> <p>All in all, I suspect your problem is within the 'blah and blah' :)</p> http://stackoverflow.com/questions/721108/sub-select-issue/723612#723612 0 Answer by DBAndrew for Sub select issue DBAndrew 2009-04-06T23:16:36Z 2009-04-06T23:16:36Z <p>To answer this question properly it would help to know what flavor of "SQL" the AS400 is working with. The AS400 by its self is just a server. The AS400 can work with many database flavors such as DB2, MS SQL Server, Oracle, etc...</p> <p>To take a quick stab at this without knowing which SQL flavor I would say you need to put '' around your date values so they don't get treated as numeric values.</p> <p>WHERE DATE >= '20080101' AND DATE &lt;= '20090101'</p> http://stackoverflow.com/questions/721108/sub-select-issue/726878#726878 2 Answer by Lynette Duffy for Sub select issue Lynette Duffy 2009-04-07T17:51:18Z 2009-04-07T17:51:18Z <p>If you are working with the native AS400 db its flavor is: DB2 for iSeries (not to be confused with DB2 for Linux and other platforms)</p> <p>If so, and the DATE fields in table 3 are decimal numeric in CCYYMMDD format as you say, your comparison is just fine. The commas are a format applied to decimals for the display and are not stored with the values.</p> <p>I agree with n8wrl, try a simple "select from Table3 Where DATE >= 20080101" and see if that runs, and work your way out from there.</p> <p>blah, blahs are very touchy :)</p>