FavoriteSubbu M asked in #ApexOct 8, 2015, 7:57 PMunexpected token: '=' at line 5 Plese help me ................string ratingValue = 'Hot';public List<Account> lstAccount{get;set;}string strQuery = 'select id, name, rating, industry,( select id, firstname, lastname, phone, fax from contacts) from account where rating =: ratingValue';lstAccount = Database.Query(strQuery); if(lstAccount.size()!= 0) { for(Account acc : lstAccount) { system.debug(acc.id + ' ----> '+ acc.name + ' ----> '+acc.rating + ' ----> '+ acc.industry ); system.debug('Contact Records Information.'); system.debug('Contact Count ....: '+ acc.contacts.size()); if(acc.contacts.size() > 0) { for(contact con : acc.contacts) { system.debug(con.id + ' ---> ' + con.firstname + ' ----> ' + con.lastname); } } else system.debug ('No Contacts for this Account'); }}else{ system.debug('Account Record Not Found.');} 4 answersSortSort by Most HelpfulSort by Most HelpfulSort by DateSubbu MOct 10, 2015, 6:56 PMThanks alot All........ LoadingWrite an answer...BoldItalicUnderlineStrikethroughBulleted ListNumbered ListAdd linkCode blockInsert imageAttach filesLink URLCancelSave0/9000Reply