Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jongotlin/ssn-sql

A bunch of swedish social security number functions for MySQL. Useful when you have a user table with their social security numbers and want to select only those over X years old.
https://github.com/jongotlin/ssn-sql

Last synced: 15 days ago
JSON representation

A bunch of swedish social security number functions for MySQL. Useful when you have a user table with their social security numbers and want to select only those over X years old.

Awesome Lists containing this project

README

        

# SSN SQL

A couple of sql functions for calculating a user's age based on swedish sequrity number format.

Examples

SELECT get_age_from_social_security_number('790628-0000');

SELECT get_age_from_social_security_number(u.ssn) FROM users u;

SELECT * FROM users u WHERE get_age_from_social_security_number(ssn) >= 18;