作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经尝试了所有我能想到的方法。问题。主表具有与第二个表名称匹配的列。我不能加入。有什么帮助吗?
SELECT
Inspections.Id,
Inspections.Custom_Specs,
Custom_Specs.Id AS Custom_Id
FROM Inspections
JOIN Custom_Specs ON Inspections.Custom_Specs=Custom_Specs.Id
Inspections.Id, (Value: 1)
Inspections.Custom_Specs, (Value: 5)
Custom_Specs.Id, (Value: 5)
Custom_Specs.Spec_Name , (Value: Name Of Spec)
Custom_Specs.Id AS Specs_Id
输出:
<option value=\"". $row["Specs_Id."] ."\">". $row["Spec_Name"] ."</option>
更新:
对我有用的查询:
SELECT
Inspections.Id,
Inspections.Custom_Specs,
Custom_Specs.Id,
Custom_Specs.Spec_Name
FROM Inspections
LEFT JOIN Custom_Specs ON Inspections.Custom_Specs = Custom_Specs.Id
最佳答案
您将规范与 id 列进行比较。这是两种不同的数据类型。下面的查询应该可以为您完成工作:
SELECT
Custom_Specs.Id
Custom_Specs.Spec_Name
FROM Inspections
LEFT JOIN Custom_Specs ON Inspections.Custom_Specs = Custom_Specs.Id
关于php MySql 连接表,Table.A 名称匹配 Table.B 列名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45701974/
我是一名优秀的程序员,十分优秀!