本文介绍了在一个表中比较两个字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SqlCommand cmd = new SqlCommand("SELECT * FROM SendP WHERE Emp_Id = Email);




比较一张表中的两个字段.示例:如果两个字段相等,则表示给定值.条件是成功,否则失败.需要如何在sql或存储过程中编写命令的方法




comparing two fields in one table. example: if two fields are equal that means given values. condition is success other wise fail. in need how to write command in sql or stored procedure

推荐答案

SELECT * FROM tablename WHERE col1= col2


select *
from   yourtable
where  column1 = 'A'
and    column2 = 'B'


select case when Emp_Id = Email then 'equals' else 'not equals' end from SendP


这篇关于在一个表中比较两个字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-22 12:56