Run as a standalone python script for a shapefile in a toolbox on ArcMap.
For example:
psql_url_pop = '''SELECT shapefile.NAME_# + shapefile.WIKI_URL FROM public.shapefile'''
rows = arcpy.UpdateCursor("C:\shapefiles\shapefile.shp", psql_url_pop)
etc...
Essentially I am trying to concatenate the values of one field with those of another and decided to use '+' over CONCAT because I want all the values.

