Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. SELECT * FROM fwa.fwa_assessment_watersheds_poly
  2. WHERE "gnis_name_1" NOT LIKE '% Lake'
  3.  
  4. # FileGDB
  5. # 11252 records returned (incorrect)
  6. "GNIS_NAME_1" NOT LIKE '% Lake'
  7.  
  8. # PostGIS
  9. # 11252 records returned (incorrect)
  10. "gnis_name_1" NOT LIKE '% Lake'
  11.  
  12. # Shapfile
  13. # 19358 records returned (correct!)
  14. "GNIS_NAME_" NOT LIKE '% Lake'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement