| Abbrev | Direction |
|---|---|
| q | EVERY |
| qH | EVERY HOUR |
| qAM | EVERY MORNING |
| qPM | EVERY EVENING |
| qHS | EVERY BEDTIME |
| qD | EVERY DAY |
| qOD | EVERY OTHER DAY |
| qWK | EVERY WEEK |
I hereby claim:
- I am smerchek on github.
- I am smerchek (https://keybase.io/smerchek) on keybase.
- I have a public key ASCbCRQMa6fnJ3sJ14paAMNA63zd95yVF6OBZkXGuQl7Ugo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select t.table_schema, | |
| t.table_name, | |
| CASE WHEN EXISTS(SELECT * | |
| FROM information_schema.columns c | |
| WHERE c.table_name = t.table_name | |
| and c.table_schema = t.table_schema | |
| and c.column_name = t.table_name || '_id' | |
| ) THEN '✅' ELSE '❌' END | |
| AS has_matching_id_column, | |
| (SELECT c.column_name |
OlderNewer