By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
5 rows affected
| Id | Description | Result |
|---|---|---|
| 1 | Some 123.4 value | 123.4 |
| 2 | No value here | null |
| 3 | A paragraph number 1.2.3 is not a valid float | null |
| 4 | Mutiple 12.3 values 34.5junk here 23.4 | 12.3 |
| 5 | A date 12/31/2024 is not a number | null |
| Id | Description | Result |
|---|---|---|
| 1 | Some 123.4 value | 123.4 |
| 2 | No value here | null |
| 3 | A paragraph number 1.2.3 is not a valid float | null |
| 4 | Mutiple 12.3 values 34.5junk here 23.4 | 23.4 |
| 5 | A date 12/31/2024 is not a number | null |
Warning: Null value is eliminated by an aggregate or other SET operation.
| Id | Description | Result1 | Result2 |
|---|---|---|---|
| 1 | Some 123.4 value | 123.4 | 123.4 |
| 2 | No value here | null | null |
| 3 | A paragraph number 1.2.3 is not a valid float | null | null |
| 4 | Mutiple 12.3 values 34.5junk here 23.4 | 12.3 | 23.4 |
| 5 | A date 12/31/2024 is not a number | null | null |
Warning: Null value is eliminated by an aggregate or other SET operation.