Curently, I am pulling all the data from the featurelayerid using the below script:
feature_layer_id = ' ' Inspform = gis.content.get(feature_layer_id) insp=Inspform.layers[0].query().sdf insp.to_sql('testtable',con=engine,schema=None,if_exists='replace',index=False,index_label=None,dtype=None,method=None)
The featurelayer has two fields with create date and edit date. would like to pull data where createdate or edit date is equal to sysdate.
How can i achieve this? I am new to python and Arcgis
I browsed some sample notebooks, but no luck