I have a table with following schema
Sample table
email | name | address
[email protected] | A | CA
I want the same set of record with five different static email addresses
Expected output
email | name | address
[email protected] | A | CA
[email protected] | A | CA
[email protected] | A | CA
[email protected] | A | CA
[email protected] | A | CA
Is this possible?