我在SQL Server 2012数据库中有一个名为TblAccttAssistant的表。它具有以下数据值,如图所示: -
我想使用Sql Query为 PPO_From 和 PPO_To 列值范围选择单值:
Select * from TblAccttAssistant where (ppo_from >=2500 ANd ppo_to<=2500)
我必须提供单个值2500才能查询。 这是0 No Of Rows。
答案 0 :(得分:1)
您可能正在寻找BETWEEN运算符吗?
Select * from TblAccttAssistant where (ppo_from <=2500 ANd ppo_to>=2500)
您的查询不起作用,因为没有行满足您的两个WHERE条件。
答案 1 :(得分:0)
KeyListener KL_Instance = new KeyListener();
EditText input_text = (EditText) findViewById(R.id.inputText);
input_text.setOnKeyListener(KL_Instance);
String username = input_text.getText().toString();