Reference documentation and code samples for the BigQuery Client class BigNumeric.
Represents a value with a data type of BIGNUMERIC.
It supports 76.76 (the 77th digit is partial) decimal digits of precision and 38 decimal digits of scale. Values are in the range of -5.7896044618658097711785492504343953926634992332820282019728792003956564819968E+38 to 5.7896044618658097711785492504343953926634992332820282019728792003956564819967E+38.
Example:
use Google\Cloud\BigQuery\BigQueryClient;
$bigQuery = new BigQueryClient();
$bigNumeric = $bigQuery->bigNumeric('999999999999999999999999999999999999999999999.99999999999999');
Namespace
Google \ Cloud \ BigQueryMethods
__construct
Parameter | |
---|---|
Name | Description |
value |
string|int|float
The NUMERIC value. |
get
Get the underlying value.
Returns | |
---|---|
Type | Description |
string |
type
Get the type.
Returns | |
---|---|
Type | Description |
string |
formatAsString
Format the value as a string.
Returns | |
---|---|
Type | Description |
string |
__toString
Format the value as a string.
Returns | |
---|---|
Type | Description |
string |