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
| DECLARE @now DATETIME2 = SYSUTCDATETIME(); | |
| SELECT * | |
| ,switchoffset(CONVERT(DATETIMEOFFSET, @now), current_utc_offset) | |
| FROM sys.time_zone_info | |
| ORDER BY name | |
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
| // My son said he knew what #1 and #2 and said vomit was #3. | |
| // I asserted that vomit was #4 because pee and poo together are #3 | |
| // so vomit had to be #4. We built out a flag enum and | |
| // his mind is blown. "That makes so much sense!" | |
| [Flags] | |
| enum BodilyExcretions | |
| { | |
| None = 0, | |
| Pee = 1, | |
| Poo = 2, |