join method

QueryBuilder join(
  1. String table,
  2. String first,
  3. String operator,
  4. String second,
)

JOIN clause

Implementation

QueryBuilder join(
    String table, String first, String operator, String second) {
  // Simple JOIN implementation - you can extend this for different JOIN types
  _selects.add('$table.*'); // Add joined table columns
  _wheres.add('$first $operator $second');
  return this;
}