Viewing post 1 (of 1 total)
Assuming your table is called 'names'
insert into names (name, location, category)
select 'alex', n1.category, n1.location from
names n1 where n1.name = 'james'
June 7, 2011 at 7:34 am
#1335003