編集する必要のある他の誰かによって作成されたアプリケーションがあります。正しい構文が見つからないコードの領域があります...誰か助けてください。
POSTGRESのselectステートメントは次のようになります。
SELECT collection|| '/' ||color AS collection
FROM table
WHERE series = 'random number' <-- this is controlled by an array in the php
PHPでは、既存のコードは次のようになります。
$tableName = $db->getOne('SELECT collection FROM item_series WHERE series = ?', array($series['marriage_1']));
}else{$tableName = $series['marriage_1'];}
私はこれを試しましたが、機能していません:
$tableName = $db->getOne('SELECT collection, ".'/'.", color AS collection FROM item_series WHERE series = ?', array($series['marriage_1']));
}else{
$tableName = $series['marriage_1'];}
私がこれに対する答えを何時間も探してきたのを手伝ってください!