我坚持从表中检索数据。
我目前正在接受用户输入$input
,并且其等于station.station
名称输出
每个电台在station.station_id
列下都有一个ID,我还希望当station_id低于输入电台名称的ID时,显示
如何将电台ID与输入的电台名称进行比较?
答案 0 :(得分:0)
如果我理解正确,您可以使用此声明
select * from station where id < (select id from station where name=$input)