c#if ((textBox2.Text.Length == 0) && (textBox1.Text.Length != 0))是什么意思
if((textBox2.Text.Length==0)&&(textBox1.Text.Length!=0))cmd.CommandText="select*froms...
if ((textBox2.Text.Length == 0) && (textBox1.Text.Length != 0))
cmd.CommandText = "select * from student where student.sno=" + textBox2.Text;
if ((textBox2.Text.Length != 0) && (textBox1.Text.Length == 0))
cmd.CommandText = "select * from student where student.sname=" + textBox3.Text;
if ((textBox2.Text.Length == 0) && (textBox1.Text.Length != 0))
cmd.CommandText = "select * from student where student.sage=" + textBox4.Text;
if ((textBox2.Text.Length == 0) && (textBox1.Text.Length != 0))
cmd.CommandText = "select * from student where student.sdept=" + textBox5.Text
如何修改以上代码,实现c#语言编写的修改记录。 展开
cmd.CommandText = "select * from student where student.sno=" + textBox2.Text;
if ((textBox2.Text.Length != 0) && (textBox1.Text.Length == 0))
cmd.CommandText = "select * from student where student.sname=" + textBox3.Text;
if ((textBox2.Text.Length == 0) && (textBox1.Text.Length != 0))
cmd.CommandText = "select * from student where student.sage=" + textBox4.Text;
if ((textBox2.Text.Length == 0) && (textBox1.Text.Length != 0))
cmd.CommandText = "select * from student where student.sdept=" + textBox5.Text
如何修改以上代码,实现c#语言编写的修改记录。 展开
2个回答
展开全部
你的第一句判断与第三句判断条件,有什么区别吗? 第二句和第四句条件有什么区别?
如果是单纯的问什么意思的话,我告诉你: &&这个符号是“与”的意思,就是2个条件同时满足的时候,执行条件下面的代码!
如果是单纯的问什么意思的话,我告诉你: &&这个符号是“与”的意思,就是2个条件同时满足的时候,执行条件下面的代码!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询