INDICES FOR TABLE  PhotoAuxAll

The extra columns that didn't make it into the PhotoObjAll table.

These are added as a separate table because adding columns to the very large PhotoObjAll table is prohibitively expensive unless the table is reloaded from scratch. In a future release, these columns will be added to the PhotoObjAll table. In the meantime, to access these columns, you may join with the PhotoObjAll table on the objid:
SELECT p.objid, p.ra, q.raErr, p.dec, q.decErr
FROM PhotoObjAll p, PhotoAuxAll q
WHERE p.objid = q.objid Similarly you may join the PhotoObj and PhotoAux views.

Index TypeKey or Field List
primary keyobjID
foreign keyPhotoObjAll(objID)
covering indexmode, l, b, raErr, decErr, raDecCorr
covering indexl, b, objID, mode
covering indexb, l, objID, mode