charlotte49er
Programmer
I want to grab all of the fields from two dbf files. However, the following statement hangs up:
strSQL = "SELECT * FROM usgs_gages.dbf INNER JOIN usgsdata.dbf ON usgs_gages.SITE_ID=usgsdata.SITE_ID"
If I replace the * with the individual field names it works but I was hoping to not have to do that. Can anyone shed some light? Thanks in advance.
strSQL = "SELECT * FROM usgs_gages.dbf INNER JOIN usgsdata.dbf ON usgs_gages.SITE_ID=usgsdata.SITE_ID"
If I replace the * with the individual field names it works but I was hoping to not have to do that. Can anyone shed some light? Thanks in advance.