Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. table a; -- contains some categories
  2. table b; -- =m:n relationship table for "a" and "c"
  3. feature class c;
  4. table d_*; --contains all data from "b" related to a single category (row) of "a"
  5.  
  6.  
  7. foreach row in a
  8. {
  9. create table d_*;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement