I am trying to compare the PIN fields of two layers, fc1 and fc2 and select fc2 features. The issues I have is that this process one PIN at a time it doesn't just select them all at once.
#arcpy.MakeFeatureLayer_management(fc2, "fc2_Lyr")
for WellID in fc2List:
arcpy.SelectLayerByAttribute_management(fc2, "NEW_SELECTION", "\"PIN\" = '{}'".format(WellID))
#arcpy.MakeFeatureLayer_management(fc2, "SelPar_lyr", "\"PIN\" = '{}'".format(WellID))