You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/external-src/com/thoughtworks/sql/.svn/text-base/Table.java.svn-base

20 lines
455 B
Plaintext

package com.thoughtworks.sql;
public class Table extends DBObject<Table> {
protected Table(String expression) {
super(expression);
}
public static Table table(String table) {
return new Table(table);
}
public Field field(String fieldName) {
if (hasAlias()) {
return Field.field(alias + "." + fieldName);
}
return Field.field(expression+"."+fieldName);
}
}