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.
| Author |
Topic |
|
dasu
Posting Yak Master
104 Posts |
Posted - 2004-09-23 : 09:35:54
|
| how to make this querry worksselect 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 |
 |
|
|
|
|
|