本文介绍了如何在SQL Server 2008中的等值之间获取exaxt的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我将列名命名为"totalexperience"

总经验=
1.3
14.2
2.5
17.3
5.0
5.6

查询:-
从用户经验中选择名字,其中总经验在1到4之间

然后结果iam得到的是
1.3
14.2
17.3
2.5


但我想得到

1.3
仅限2.5


我该如何写查询以获取确切的值

Hi,

I have column name as ''totalexperience''

totalexperience =
1.3
14.2
2.5
17.3
5.0
5.6

Query:-
select firstname from useretails where totalexperience between 1 and 4

then result iam getting is
1.3
14.2
17.3
2.5


but i want to get

1.3
2.5 only


how can i have to write query to get exact values

推荐答案


这篇关于如何在SQL Server 2008中的等值之间获取exaxt的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 16:46