yii\db\ExpressionBuilderInterface - Yii2 类参考手册
Interface yii\db\ExpressionBuilderInterface
全部
| 方法 Methods
Interface ExpressionBuilderInterface is designed to build raw SQL from specific expression objects that implement yii\db\ExpressionInterface.
Public Methods
隐藏继承的方法 Hide inherited methods
| 方法 Method | 简介 Description | 定义在 Defined By |
|---|---|---|
| build() | Method builds the raw SQL from the $expression that will not be additionally escaped or quoted. | yii\db\ExpressionBuilderInterface |
方法详情 Method Details
Method builds the raw SQL from the $expression that will not be additionally escaped or quoted.
| public abstract string build ( yii\db\ExpressionInterface $expression, array &$params = [] ) | ||
| $expression | yii\db\ExpressionInterface | The expression to be built. |
| $params | array | The binding parameters. |
| return | string | The raw SQL that will not be additionally escaped or quoted. |
|---|---|---|