Anonymize relational data Sql Scripts
Sometimes we need to anonymize sensitive data that was used as an id of rows - consider the following tables:
create table Person(
social_security_number int,
name varchar(50)
)
create table transactions(
person_social_security_number int,
m...
noam.hashnode.dev1 min read