Hai this is kiran , i read values from sqlserver but i use values in application ..
for ex
"select s1,s2,s3,s4,e1,e2,e3 from table"
but i want s1 value only...
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ajay rajuPosted Jun 4, 2010, 8:11 AM
first i ask s1,s2,s3....... these all are column names? if they are column names you want only s1 column value, then write query like
select s1 from tablename.
it may helps you. if it helps you please mark as accept answer.
Thanks.