<div dir="ltr">I'm trying to put what the warning is for the point in the polygon, I have my wwmaster which is where all the warnings are stored, my mastergistmp where my users are stored, I know if a user is in a severe thunderstorm warning and a tornado warning the tornado warning will override the severe storm warning which is what I want does anyone see anything wrong with this I think I am missing some users in the warned area. everything is epsg 4326 I would like to also make it where users with in a mile of the warned area are updated with the information I've tried st_buffer and have had trouble with it. I'm updating the mastergistmp.warn or thats what I'm shooting for.<div><br><div><div>UPDATE mastergistmp SET warn = wwmaster.prod_type FROM wwmaster WHERE  wwmaster.prod_type = 'Flash Flood Warning' and ST_Within(mastergistmp.geom,wwmaster.geom);</div><div>UPDATE mastergistmp SET warn = wwmaster.prod_type FROM wwmaster WHERE  wwmaster.prod_type = 'Severe Thunderstorm Warning' and ST_Within(mastergistmp.geom,wwmaster.geom);</div><div>UPDATE mastergistmp SET warn = wwmaster.prod_type FROM wwmaster WHERE  wwmaster.prod_type = 'Tornado Warning' and ST_Within(mastergistmp.geom,wwmaster.geom);</div></div><div><br></div></div></div>