从SQL表

时间:2016-05-12 19:29:00

标签: sql

我坚持从表中检索数据。

我目前正在接受用户输入$input,并且其等于station.station名称输出

每个电台在station.station_id列下都有一个ID,我还希望当station_id低于输入电台名称的ID时,显示

如何将电台ID与输入的电台名称进行比较?

1 个答案:

答案 0 :(得分:0)

如果我理解正确,您可以使用此声明

select * from station where id < (select id from station where name=$input)