what wrong in this query
select Modules,Task from ClientDetails where ProjectTitle ='selvi' where Statuss != 'Completed'
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.
Santhosh Kumar JayaramanPosted Oct 9, 2012, 2:44 AM
select Modules,Task from ClientDetails where ProjectTitle ='selvi' where Statuss != 'Completed
Dont you see you are using two where clauses? i asked you to replace second "where" with "And"
selvi subramanianPosted Oct 9, 2012, 2:48 AM
selvi subramanianPosted Oct 9, 2012, 2:26 AM
Kunal VaishyaPosted Oct 9, 2012, 2:18 AM
select Modules,Task from ClientDetails where ProjectTitle ='selvi' where TRIM(Statuss) != 'Completed'
selvi subramanianPosted Oct 9, 2012, 2:12 AM
Santhosh Kumar JayaramanPosted Oct 9, 2012, 2:07 AM
" where ProjectTitle ='selvi' where Statuss != "
selvi subramanianPosted Oct 9, 2012, 2:05 AM
Santhosh Kumar JayaramanPosted Oct 9, 2012, 1:57 AM
try this
select Modules,Task from ClientDetails where ProjectTitle ='selvi' and Statuss != 'Completed'