0

我有这个问题,我不知道从哪里开始。
例如,我的数据库中有这个 [这只是示例数据库]

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
4

3 回答 3

1

您可以使用 SQL-LIKE-Statement。

SQL:SELECT DISTINCT word FROM Table WHERE word LIKE 'A%' 这只返回以 a 开头的单词。

于 2012-08-10T11:16:44.583 回答
1

这比你想象的要简单得多。您可以使用SQL LIKE 运算符

SELECT * FROM table WHERE word LIKE 'a%' ORDER BY word;
于 2012-08-10T11:18:29.070 回答
0
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 
于 2012-08-10T11:19:19.000 回答