> insert into AcctPriv (UserAppno,approval,Clause) > values > 1245,'N',',''1'',''2'',''3'',''4'',''5'',''6'',''7'',''8'',''9'')' > > im trying to insert this text into that table: > ,'1','2','3','4','5','6','7','8','9')
That's an odd bit of text to want to insert, but I believe you are only missing the required parens around the value list: insert into AcctPriv (UserAppno,approval,Clause) + values (1245, 'N', + ',''1'',''2'',''3'',''4'',''5'',''6'',''7'',''8'',''9'')' + ) -- Larry __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com

