asp.net 检索数据库中图片字段是否为空

 case when answer_pic is null then 0 else 1 end  

answer_pic为数据库表中图片(image)字段

//检索数据库中图片字段是否为空,
//0表示改字段为空
public int stuanswerhasPic(int paper_id, string stu_id, int qid)
{

string sqlString = "select return_id = case when answer_pic is null then 0 else 1 end from paper_done where paper_id=" + paper_id + " and stu_id='" + stu_id + "' and qid = " + qid;
SqlConnection con = DB.getConnection();
SqlCommand mycommd = new SqlCommand(sqlString, con);
SqlDataReader myReader = mycommd.ExecuteReader();
if (myReader.Read())
{
return Convert.ToInt32(myReader["return_id"]);
}
else
{
return 0;
}
}

关键sql语句:select return_id = case when answer_pic is null then 0 else 1 end from paper_done
其中answer_pic是图片字段 paper_done是存放图片字段的表

转载于:https://www.cnblogs.com/mzwhzwl/archive/2009/01/02/1366830.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值