2年以上の経験を持つテーブルから従業員のリストを取得するタスクがあります。テーブルに'joined_date'
フィールドがありますemployee
。cakephpフレームワークを使用しています。詳細を取得する方法を教えてください。よろしくお願いします。
質問する
1215 次
1 に答える
0
最初に、さまざまな方法のいずれかを使用してデータベースに接続する必要があります。次に、SQL を使用してレコードを取得します。
フィールドJoin_dateがタイムスタンプであり、 employeeというテーブルにあると仮定すると...
odbc_connect を使用した例を次に示します...
<?php
// Connect to the database
$conn = odbc_connect($server ,$username ,$password );
// Define the query
$query = "
SELECT * FROM employee
WHERE joined_date >= now() - INTERVAL 2 YEAR
";
// Execute the query and assign the results to a resource
$res = odbc_exec($conn,trim($query));
// Loop through the results
while($row = odbc_fetch_array($res))
{
print_r($row);
}
// Close the connection
odbc_close($conn);
?>
于 2013-03-01T17:33:10.333 に答える