亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

php語言

Yii2如何實現(xiàn)跨mysql數(shù)據(jù)庫關(guān)聯(lián)查詢排序

時間:2024-11-04 14:48:38 php語言 我要投稿
  • 相關(guān)推薦

Yii2如何實現(xiàn)跨mysql數(shù)據(jù)庫關(guān)聯(lián)查詢排序

  導(dǎo)語:Yii2如何實現(xiàn)跨mysql數(shù)據(jù)庫關(guān)聯(lián)查詢排序呢?下面是小編給大家提供的代碼實現(xiàn)教程,大家可以參考閱讀,更多詳情請關(guān)注應(yīng)屆畢業(yè)生考試網(wǎng)。

  背景:在一個mysql服務(wù)器上(注意:兩個數(shù)據(jù)庫必須在同一個mysql服務(wù)器上)有兩個數(shù)據(jù)庫:

  memory (存儲常規(guī)數(shù)據(jù)表) 中有一個 user 表(記錄用戶信息)

  memory_stat (存儲統(tǒng)計數(shù)據(jù)表) 中有一個 user_stat (記錄用戶統(tǒng)計數(shù)據(jù))

  現(xiàn)在在 user 表生成的 GridView 列表中展示 user_stat 中的統(tǒng)計數(shù)據(jù)

  只需要在User的model類中添加關(guān)聯(lián)public function getStat()

  {

  return $this->hasOne(UserStat::className(), ['user_id' => 'id']);

  }

  在GridView就可以這樣使用來展示統(tǒng)計數(shù)據(jù)

  <?= GridView::widget([

  'dataProvider' => $dataProvider,

  'columns' => [

  //其他列

  [

  'label' => '統(tǒng)計數(shù)據(jù)',

  'value' => function($model){

  return isset($model->stat->data) ? $model->stat->data : null;

  }

  ],

  //其他列

  ],

  ]); ?>

  現(xiàn)在增加了一個需求,需要在user GridView 列表中對統(tǒng)計數(shù)據(jù)進(jìn)行排序和篩選

  若 user 和 user_stat 表在同一個數(shù)據(jù)庫下我們可以這樣做:

  UserSearch:

  public $data;

  public function rules()

  {/*{{{*/

  return [

  ['data'], 'integer'],

  //其他列

  ];

  }/*}}}*/

  public function search($params, $onlyActiveUsers = false)

  {

  $query = User::find();

  $query->joinWith(['stat']);

  $dataProvider = new ActiveDataProvider([

  'query' => $query,

  'sort' => [

  'attributes' => [

  //其他列

  'data' => [

  'asc' => [UserStat::tableName() . '.data' => SORT_ASC],

  'desc' => [UserStat::tableName() . '.data' => SORT_DESC],

  ],

  //其他列

  ],

  'defaultOrder' => [

  'id' => SORT_DESC,

  ],

  ],

  'pagination' => [

  'pageSize' => 50,

  ],

  ]);

  $this->load($params);

  if (!$this->validate()) {

  $query->where('0=1');

  return $dataProvider;

  }

  $query->filterWhere([

  //其他列

  UserStat::tableName() . '.data' => $this->data

  ]);

  return $dataProvider;

  }

  在GridView就可以這樣使用來展示統(tǒng)計數(shù)據(jù),就可以排序了

  <?= GridView::widget([

  'dataProvider' => $dataProvider,

  'columns' => [

  //其他列

  [

  'label' => '統(tǒng)計數(shù)據(jù)',

  'attribute' => 'data',

  'value' => function($model){

  return isset($model->stat->data) ? $model->stat->data : null;

  }

  ],

  //其他列

  ],

  ]); ?>

  search 表單中添加以下列就可以篩選了

  <?php $form = ActiveForm::begin(); ?>

  //其他列

  <?= $form->field($model, 'data')?>

  //其他列

  <p class="form-group">

  <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>

  </p>

  <?php ActiveForm::end(); ?>

  然而現(xiàn)實是殘酷的, user 和 user_stat 表并在同一個數(shù)據(jù)庫下。

  于是就會報出這樣一個錯誤:

  SQLSTATE[42S02]: Base table or view not found: 1146 Table 'memory.user_stat' doesn't exist

  The SQL being executed was: ...

  要在兩個數(shù)據(jù)庫(同一臺服務(wù)器)上進(jìn)行關(guān)聯(lián)數(shù)據(jù)查詢,純SQL語句如下:

  代碼如下:

  select a.*,b.* from memory.user as a,memory_stat.user_stat as b where a.id=b.user_id;

  Yii2轉(zhuǎn)化成 SQL 語句時默認(rèn)不會在表明前添加數(shù)據(jù)庫名,于是mysql在執(zhí)行sql語句時就會默認(rèn)此表在memory數(shù)據(jù)庫下。

  代碼如下:

  select a.*,b.* from memory.user as a,memory.user_stat as b where a.id=b.user_id;

  于是就出現(xiàn)了以上報錯信息。

  那么,如何來解決這個問題呢?

  其實很簡單,只需要重寫 user_stat 的 model 類下的 tableName() 方法就可以了。

  // 默認(rèn)是這樣的

  public static function tableName()

  {

  return 'user_stat';

  }

  public static function getDb()

  {

  return Yii::$app->get('dbStat');

  }

  // 只需要在表明前添加數(shù)據(jù)庫名

  public static function tableName()

  {

  return 'memory_stat.user_stat';

  }

  public static function getDb()

  {

  return Yii::$app->get('dbStat');

  }

  // 為了提高代碼穩(wěn)定性,可以這樣寫

  public static function tableName()

  {

  preg_match("/dbname=([^;]+)/i", static::getDb()->dsn, $matches);

  return $matches[1].'.user_stat';

  }

  public static function getDb()

  {

  return Yii::$app->get('dbStat');

  }

【Yii2如何實現(xiàn)跨mysql數(shù)據(jù)庫關(guān)聯(lián)查詢排序】相關(guān)文章:

php查詢mysql的實例09-09

關(guān)于php操作mysql執(zhí)行數(shù)據(jù)庫查詢08-11

php連接mysql數(shù)據(jù)庫代碼08-01

PHP數(shù)據(jù)庫:mysql重置密碼07-20

Linux自動備份MySQL數(shù)據(jù)庫的實用方法10-08

php查詢mysql多條件判斷輸出展示實例09-06

2017計算機(jī)二級MySQL考試在MySQL數(shù)據(jù)庫比較日期的方法07-21

Php中用PDO查詢Mysql來避免SQL注入風(fēng)險的方法10-27

計算機(jī)二級MySQL輔導(dǎo)知識:簡單查詢05-31

PHP實現(xiàn)搜索查詢功能的方法技巧08-01