public SQLBuilder EQUALS(String string) { judgeKeyWord("="); handleString(string); builder.append(" "); return this; }
public SQLBuilder EQUALS(double num) { judgeKeyWord("="); builder.append(num + " "); return this; }