谁帮我用linq to sql写个查询:a表中id=1的数据行数

2024-12-13 08:57:02
推荐回答(1个)
回答1:

count(*)
from a
where id=1

count 函数 就是用来记数的。