ef使用sql语句查询单个数据,比如我要查询某表里面的某一个值,该怎么用。谢谢大神

2025-01-02 04:36:41
推荐回答(1个)
回答1:

declare
varchar temp(10)
select @temp=z from DB:A where ...
if(@temp==1)
select * from DB:B where...
else if(@temp==2)
select * from DB:C where...
else if(@temp==3)
select * from DB:D where...
这个思路应该是这样的,你自己把代码补充完整,数据类型定好,希望能帮到你