Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Your example only shows individual text lines. It does not show what is a 'list'pull one list from another
* --- [u]new[/u] table#3 - Assuming Table3 does not already exist ---
SELECT * FROM Table1 WHERE Account IN (SELECT Account FROM Table2) INTO TABLE Table3
DELETE FROM Table1 WHERE Account IN (SELECT Account FROM Table2)
SELECT Table3