You can also create a view (a query, depending on the db you're using).
ansi sql view creation:
Create View MyView as select one, two,three from tableA, tableB
where tableA.four = tableB.four;
You then just say:
Select * from MyView;
|
Results 1 to 4 of 4
Threaded View
|
Click Here to Expand Forum to Full Width |