使用查詢數據,另一個SQL查詢我這裏有一個查詢:如何yii2
public function SearchExactJob($id) {
$connect = \Yii::$app->db;
$query = $connect->createCommand('
SELECT job_name FROM job_questions WHERE job_id=:id')
->bindValue(':id':$id)
->queryAll();
}
我想用job_name
另一個查詢:PS:我萬一寫下來在一張紙上我將能夠找出如何得到這個數據
$anotherquery = $connect->createCommand(
'SELECT * FROM company_questions
WHERE company_question = [the job_name I want to get from the `$query`])
另外,如果我將順利拿到$anotherquery
工作,我想要得到的數據並把它分配給該視圖。
但後來,即時求助,因爲我剛剛使用Yii2。請幫幫我。
嗨,謝謝。你的答案是讚賞,但我已經得到了解決。我已經用答案更新了我的問題。 :) – jaegyo23