「specifications.sn」にワイルドカード%を追加するにはどうすればよいですか?
SELECT `products2`.`type`,
`products2`.`sn`,
`products2`.`lap`,
`specifications`.`year`
FROM `products2`
INNER JOIN `specifications`
ON `products2`.`sn` LIKE `specifications`.`sn`
WHERE `products2`.`id` = ? LIMIT 1
編集:
現在のクエリを追加
- バックティックを削除しました
CONCATを追加しました
SELECT products2.type, products2.sn, products2.lap, specifications.year FROM products2 INNER JOIN specifications ON products2.sn LIKE CONCAT('%', specifications.sn, '%') WHERE products2.id = ? LIMIT 1
代替クエリ-上記のコードと同じエラー
- バックティックを削除しました
- 内部結合を削除しました
WHEREステートメントにLIKEを追加しました
SELECT products2.type, products2.sn, products2.lap, specifications.year FROM products2, specifications WHERE products2.id = ? AND products2.sn LIKE '%' + specifications.sn + '%' LIMIT 1
EDIT2
PHPコード
if ($stmt = $mysqli->prepare('SELECT products2.type,
products2.sn,
products2.lap,
specifications.year
FROM products2
INNER JOIN specifications
ON products2.sn LIKE CONCAT('%', specifications.sn, '%')
WHERE products2.id = ? LIMIT 1')) {
$stmt->bind_param('i', $id);
$id = $_GET['id'];
$stmt->execute();
$stmt->bind_result($type, $sn, $lap, $year);
$stmt->fetch();
echo $type . '<br/>';
echo $sn . '<br/>';
echo $lap . '<br/>';
echo $year . '<br/>';
$stmt->close();
} else {
echo $mysqli->error;
}