这些天我是一个 MySQL 人,并且有一个我正在处理的 .NET 项目,但无法弄清楚如何根据表中的两个字段从表中动态生成和返回字段(列)。
Units 表中有两个字段 bRentable 和 bRented,如果 bRentable 和 bRented 等于 0,我需要返回一个名为 reserved 的字段。
这是我到目前为止的SQL
/* Units Query */
SELECT Units.UnitID, Units.dcWidth, Units.dcLength, Units.dcPushRate,
Units.dcStdRate, Units.UnitTypeID, UnitTypes.sTypeName, Units.bRentable
FROM Units
INNER JOIN UnitTypes ON Units.UnitTypeID = UnitTypes.UnitTypeID
任何帮助将不胜感激。