データベースにクエリを実行するには、次の 2 つの方法を検討してください。
フレームワーク (Yii) の場合:
$user = Yii::app()->db->createCommand()
->select('id, username, profile')
->from('tbl_user u')
->join('tbl_profile p', 'u.id=p.user_id')
->where('id=:id', array(':id'=>$id))
->queryRow();
文字列連結 (SQL ステートメントの個々の部分を分離する) を使用する場合:
$columns = "id,username,profile"; // or =implode(",",$column_array);
//you can always use string functions to wrap quotes around each columns/tables
$join = "INNER JOIN tbl_profile p ON u.id=p.user_id";
$restraint = "WHERE id=$id ";//$id cleaned with intval()
$query="SELECT $columns FROM tbl_user u {$restraint}{$join}";
//use PDO to execute query... and loop through records...
ページネーションのための文字列連結の例:
$records_per_page=20;
$offset = 0;
if (isset($_GET['p'])) $offset = intval($_GET['p'])*$records_per_page;
Squery="SELECT * FROM table LIMIT $offset,$records_per_page";
どちらの方法がより優れたパフォーマンスを発揮しますか?
- PHP の PDO を使用すると、コードをさまざまなデータベースに移植できます
- 2番目のメソッドは関数でラップできるため、コードが繰り返されることはありません。
- 文字列連結により、複雑な SQL ステートメントをプログラムで (文字列を操作して) 構築できます。