Main   Products   Offshore Outsourcing   Customers   Partners   ContactUs  
JDBC Databases
  HXTT Access 7.1.259
  HXTT Cobol 5.0.258
  HXTT DBF 7.1.260
 
  Buy Now
  Support
  Download
  Document
  FAQ
  HXTT Excel 6.1.262
  HXTT Json 1.0.230
  HXTT Paradox 7.1.258
  HXTT PDF 2.0.258
  HXTT Text(CSV) 7.1.258
  HXTT Word 1.1.258
  HXTT XML 4.0.259
Offshore Outsourcing
Free Resources
  Firewall Tunneling
  Search Indexing Robot
  Conditional Compilation
  Password Recovery for MS Access
  Password Recovery for Corel Paradox
  Checksum Tool for MD5
  Character Set Converter
  Pyramid - Poker of ZYH
   
   
   
Heng Xing Tian Tai Lab of Xi'an City (abbr, HXTT)

HXTT DBF
union statement
dms
2010-11-08 02:02:30
Hi

The union statement seems to work incorrectly. Only one table is counted;

Code:
String A = "select AREA_CODE as X_DATA, COUNT(AREA_CODE) as Y_VALUE1 from feedback where FIN_DATE >= '2000-01-01' and FIN_DATE <= '2011-12-08' and AREA_CODE like '%%' and LOC_NUMBER like '%%' and FAIL_MODE like '%%' and RESOURCE like '%%' and WORKSHOP like '%%' and BD_CODE like '%%' group by AREA_CODE " ;

String B = " select AREA_CODE as X_DATA,COUNT(AREA_CODE) as Y_VALUE1 from feedback_arc where FIN_DATE >= '2000-01-01' and FIN_DATE <= '2011-12-08' and AREA_CODE like '%%' and LOC_NUMBER like '%%' and FAIL_MODE like '%%' and RESOURCE like '%%' and WORKSHOP like '%%' and BD_CODE like '%%' group by AREA_CODE";

String sql1 = A+ " UNION "+B;

Connection conn = DriverManager.getConnection("jdbc:dbf:/d:/dms2000/data/dms?lockType=DBASE4BDE");
PreparedStatement ps = conn.prepareStatement(sql1, ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
ps.executeQuery();
ResultSet rs = ps.getResultSet();

while(rs.next()){
System.out.println(rs.getString("x_data")+" "+rs.getString("X_DATA")+" "+rs.getDouble("Y_VALUE1"));
}

result;
Re:union statement
HXTT Support
2010-11-08 02:22:37
Passed test with test code:
aaa 1
bbb 1
The total row number of resultset: 2

Please check whether one of your sql will return empty result. For instance,
aaa 1
The total row number of resultset: 1
Because feedback_arc hasn't data rows.

Search Key   Search by Last 50 Questions




Google
 

Email: webmaster@hxtt.com
Copyright © 2003-2019 Heng Xing Tian Tai Lab of Xi'an City. | All Rights Reserved. | Privacy | Legal | Refund | Sitemap