public static SetQuery example() throws Exception {
return TstLanguageBridgeFactory.factory.translate(helpExampleSetQuery());
}
public static SetQuery example2() throws Exception {
NamedTable group = new NamedTable("ted", null, null); //$NON-NLS-1$
ColumnReference element = new ColumnReference(group, "nugent", null, String.class); //$NON-NLS-1$
DerivedColumn symbol = new DerivedColumn(null,element);
List symbols = new ArrayList();
symbols.add(symbol);
List items = new ArrayList();
items.add(group);
NamedTable group2 = new NamedTable("dave", null, null); //$NON-NLS-1$
ColumnReference element2 = new ColumnReference(group2, "barry", null, String.class); //$NON-NLS-1$
DerivedColumn symbol2 = new DerivedColumn(null, element2);
List symbols2 = new ArrayList();
symbols2.add(symbol2);