Guest_imported
New member
- Jan 1, 1970
- 0
Let's say that I have two tables that are the same except for one record that has been updated in one of the tables. What would be the SQL needed to find just that updated record?
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.
select * from sometable
minus
select * from sometable
select * from sometable
union all
select * from sometable