Apr 30, 2007 #1 Steve95 MIS Nov 3, 2004 265 US Hi All I am trying to multiply the following select process_yr from tbl_report where (process_yr*4) and its not working....some can some one tell me what Iam doing wrong... Many Thanks
Hi All I am trying to multiply the following select process_yr from tbl_report where (process_yr*4) and its not working....some can some one tell me what Iam doing wrong... Many Thanks
Apr 30, 2007 #2 ptheriault IS-IT--Management Aug 28, 2006 2,699 US Are you look for all the values from the table where the process year is equal to process year * 4 or are you trying to select the process year * 4? - Paul - If at first you don't succeed, find out if the loser gets anything. Upvote 0 Downvote
Are you look for all the values from the table where the process year is equal to process year * 4 or are you trying to select the process year * 4? - Paul - If at first you don't succeed, find out if the loser gets anything.
Apr 30, 2007 Thread starter #3 Steve95 MIS Nov 3, 2004 265 US Iam trying to select the process year, year and then 3 column as process * 4 Any ideas? Upvote 0 Downvote
Apr 30, 2007 #4 monksnake Programmer Oct 14, 2005 2,145 US select process_yr * 4 from tbl_report <. Upvote 0 Downvote