I have a table with following schema
Sample table
email | name | address
1@gmail.com | A | CA
I want the same set of record with five different static email addresses
Expected output
email | name | address
static1@gmail.com | A | CA
static2@gmail.com | A | CA
static3@gmail.com | A | CA
static4@gmail.com | A | CA
static5@gmail.com | A | CA
Is this possible?