I've got software where I can provide SQL queries to db. But there is limitation, I can only change WHERE
clause...
for ex.:
[Python]
x = gp.searchcursor('DATABASE_NAME','FIELDS WHICH I WANT TO VIEW','WHERE_CLAUSE')
I've got table where is about ~250k records and I want to get first 50-70 (number doesnt matter) of records. My question is how can I create query (actually WHERE clause) which will return mi those records?
just for clarify, on the bottom of application there is Oracle and MS SQL server (depends of called database)