I'm looking for a way to quickly process some table in mysql 5.0.X. I'd like to insert a row into t1 for each row in t2. Essentially, I'd like something like this to map over every row:
REPLACE INTO t1 VALUES (CONCAT('blah/', (select username from t2)), 'value')
Is that possible without procedures?