My first table(t1) is a simple list of websites.
url
My second table(t2) has two columns
url, source
I would like to do something like this
insert into t2(url, source) where ((select * from t1), '1');
But I am getting an error that I have to many rows from my select * from t1. I understand why I am getting the error, but how should I do this query instead?
The reason why I am not editing t1 is that I have many different "t1"s that I would like to mark in my new master table as different with the sourceIDs.