When you get an instance of the BaseBuilder class, the database table specified in the model is added to it.
This is how the BaseBuilder class is designed.
That is, before you start using QueryBuilder, already called
PHP Code:
->from($this->table);
//There it is a little different, but the meaning is the same.
There is nothing you can do about it.
But you can reset the "from" section before using QueryBuilder.