Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jongotlin/ssn-sql
- Owner: jongotlin
- Created: 2011-10-24T19:50:17.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-10-24T20:26:40.000Z (about 13 years ago)
- Last Synced: 2024-11-04T06:42:39.710Z (2 months ago)
- Homepage:
- Size: 86.9 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mdown
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;