select in table where list<int>
本文关键字:lt int gt list in table where select | 更新日期: 2023-09-27 18:01:27
有一个字段的年龄和名称
以下数据
jack 15
sara 14
mishel 13
sufia 19
green 22
blue 56
我们有一个由以下成员组成的演示
list<int> age = new list<int>();
age.add(15);
age .add(14);
age .add(19);
如何通过提供
搜索数据库从表
中选择以下数据jack 15
sara 14
sufia 19
使用IN
子句以编程方式构建SQL查询:
string sql = @"
SELECT *
FROM [PeopleTable]
WHERE [Age] IN (" + age.Join(", ") + ")";
结果:SELECT *
FROM [PeopleTable]
WHERE [Age] IN (15, 14, 19)
如果你使用的是MSSQL,你可以创建一个表类型,它将有一个列作为年龄
CREATE TYPE my_table_type AS TABLE(Age int NOT NULL)
go
CREATE PROCEDURE usp_FetchUser
@age my_table_type READONLY
AS
select user_name from my_table where user_age in( select * from @age)
go
如果您使用LINQ to SQL,那么您应该创建以下查询:
var query = from record in table
where ages.Contains(record.age)
select record;
query.ToList();
如果你想使用SP,那么你必须动态地创建where子句:
string whereClause = string.Empty;
foreach (int age in ages)
{
whereClause += age + ", ";
}
whereClause = whereClause.SubString(query, query.Length - 2) // Removing the last comma;
string query = string.Format ("select * from tableName where age in ({0})", whereClause);