Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 suggest me solution for this querry

Author  Topic 

dasu
Posting Yak Master

104 Posts

Posted - 2004-09-23 : 09:35:54
how to make this querry works

select err1_fl+err2_fl as x from t_cbs_epierr where x='some value'


make it work

samsekar
Constraint Violating Yak Guru

437 Posts

Posted - 2004-09-23 : 09:43:01
select err1_fl+err2_fl as x from t_cbs_epierr where (err1_fl+err2_fl) ='some value'

- Sekar
Go to Top of Page
   

- Advertisement -