Imagine a table holding points, polylines and regions (polygons in the real world). Is there a one-stop method for sql selecting all the points, or all the lines etc..
 
I can do it in a two-stop method; as below;
 
Select id, obj from table1 into Selection
Browse * From Selection
 
and then;
 
Select id from table1 into Selection
Where table1.Object = "Point"
Browse * From Selection
 
A free rude joke (from Chad) to anyone who can come up with an answer
 
regards,
Andrew Bailey
 

Reply via email to