The SQL query to list all records from the member and branch tables is: SELECT * FROM member, branch;
<h3>How to write the SQL query?</h3>
The table names are given as:
The syntax to list all records using the SQL query is:
SELECT * FROM table-1, table-2,......table-n;
Using the above syntax, we have the query to be:
SELECT * FROM member, branch;
Read more about SQL queries at:
brainly.com/question/10097523
#SPJ1