我有这个问题,我不知道从哪里开始。
例如,我的数据库中有这个 [这只是示例数据库]
id word
1 adore
2 and
3 apple
4 asore
5 banana
6 bate
7 beat
8 busy
如何对其进行排序和过滤,以便仅查看以“A”开头的单词?
id word
1 adore
2 and
3 apple
4 asore
您可以使用 SQL-LIKE-Statement。
SQL:SELECT DISTINCT word FROM Table WHERE word LIKE 'A%'
这只返回以 a 开头的单词。
这比你想象的要简单得多。您可以使用SQL LIKE 运算符。
SELECT * FROM table WHERE word LIKE 'a%' ORDER BY word;
select id, word
from your_table
where word like 'a%'
order by id
或者
select id, word
from your_table
where substring(word, 1, 1) = 'a'
order by id