return table != null ? table : sqlSchema.getTableForAlias(alias);
}
public Completion getCompletion(int offset)
{
Completion comp = super.getCompletion(offset);
if(comp != null) return comp;
if(offset >= selectListStart && offset <= selectListEnd)
return new SQLColumn(this, offset, offset);
else if(offset >= fromStart && offset <= fromEnd)