1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Add a bit more explanation to the latest til

This commit is contained in:
jbranchaud
2016-02-03 19:43:58 -06:00
parent ddbcc7f23d
commit 19a973e780

View File

@@ -6,6 +6,10 @@ particular seed in order to get some determinism from functions that utilize
the random number generator. The seed needs to be something between `0` and
`1`.
We can see this in action by setting the seed and then invoking `random()` a
couple times. Doing this twice, we will see the reproducibility we can
achieve with a seed.
```sql
> set seed to 0.1234;
SET