显示数据库中的表时出现问题。每次运行该页时,都会收到以下错误消息:
运行查询[字段列表中的未知列'song.songtitle'时出错]
这是一个 $sql
我正试图使用以下代码块将表中的数据拉到php表单中:
上开关语句
code case "songAlbum": {
$tableFormat=SONG_ALBUM;
$sql = "SELECT song.songTitle, song.url, album.albumTitle, album.albumPrice
FROM song
JOIN album
WHERE song.album_id = album.album_id
ORDER BY album.albumTitle";
break;
}
谢谢你的帮助。
1条答案
按热度按时间nzkunb0c1#
列的名称为
song_title
,不是songTitle