Sub select issue - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T07:42:35Zhttp://stackoverflow.com/feeds/question/721108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/721108/sub-select-issue1Sub select issuemish2009-04-06T11:52:59Z2009-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 >= 20080101
AND DATE <= 20090101
) AS C ON (blah AND blah)
</code></pre>
http://stackoverflow.com/questions/721108/sub-select-issue/722176#7221764Answer by n8wrl for Sub select issuen8wrl2009-04-06T16:24:13Z2009-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#7236120Answer by DBAndrew for Sub select issueDBAndrew2009-04-06T23:16:36Z2009-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 <= '20090101'</p>
http://stackoverflow.com/questions/721108/sub-select-issue/726878#7268782Answer by Lynette Duffy for Sub select issueLynette Duffy2009-04-07T17:51:18Z2009-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>