Your SQL command was:
SELECT TOP 10 
 obj.run, obj.camCol, str(obj.field, 3) as field,
 str(obj.rowc, 6, 1) as rowc, str(obj.colc, 6, 1) as colc,
 str(dbo.fObj(obj.objId), 4) as id, 
 str(obj.psfMag_g - 0*obj.extinction_g, 6, 3) as g,
 str(obj.psfMag_r - 0*obj.extinction_r, 6, 3) as r,
 str(obj.psfMag_i - 0*obj.extinction_i, 6, 3) as i,
 str(obj.psfMag_z - 0*obj.extinction_z, 6, 3) as z,
 str(60*distance, 3, 1) as D,
 dbo.fField(neighborObjId) as nfield,
 str(dbo.fObj(neighborObjId), 4) as nid
FROM
 (SELECT obj.objId,
 run, camCol, field, rowc, colc,
 psfMag_u, extinction_u,
 psfMag_g, extinction_g,
 psfMag_r, extinction_r,
 psfMag_i, extinction_i,
 psfMag_z, extinction_z,
 NN.neighborObjId, NN.distance
 FROM PhotoObj as obj
 JOIN neighbors as NN on obj.objId = NN.objId
 WHERE
 60*NN.distance between 0 and 15 and
 NN.mode = 1 and NN.neighborMode = 1 and
 run = 756 and camCol = 5 and
 obj.type = 6 and (obj.flags & 0x40006) = 0 and
 nchild = 0 and obj.psfMag_i < 20 and
 (g - r between 0.3 and 1.1 and r - i between -0.1 and 0.6)
 ) as obj 
JOIN PhotoObj as nobj on nobj.objId = obj.neighborObjId 
WHERE 
 nobj.run = obj.run and
 (abs(obj.psfMag_g - nobj.psfMag_g) < 0.5 or
 abs(obj.psfMag_r - nobj.psfMag_r) < 0.5 or
 abs(obj.psfMag_i - nobj.psfMag_i) < 0.5) 

Your query output (max 500,000 rows):

runcamColfieldrowccolcidgrizDnfieldnid
7565 15 615.7 412.3129520.69019.99019.73019.6149.2151575
7565 13 632.5 187.8138720.46520.01119.82219.7189.6131611
7565 13 607.5 981.4138620.55319.85919.58619.472 13131598
7565 13 607.5 981.4138620.55319.85919.58619.472 14131578
7565 13 396.11751.4137520.80720.10619.77819.656 12131539
7565 18 347.2 564.3 71517.70516.94616.68716.537 1318 183
7565 15 942.7 156.0120520.17619.45619.22719.0089.8151318
7565 14 90.51987.8146620.46219.72019.47219.304 15141471
7565 141134.7 111.6139719.95819.38419.14619.096 13141402
7565 141134.7 111.6139719.95819.38419.14619.096 11141401

Use the button below to upload the results of the above query to the SAW and retrieve the corresponding FITS files:

Upload list of fields to SAW