BigQuery Client - Class Numeric (1.34.7)

Reference documentation and code samples for the BigQuery Client class Numeric.

Represents a value with a data type of Numeric.

It supports a fixed 38 decimal digits of precision and 9 decimal digits of scale, and values are in the range of -99999999999999999999999999999.999999999 to 99999999999999999999999999999.999999999.

Example:

use Google\Cloud\BigQuery\BigQueryClient;
$bigQuery = new BigQueryClient();
$numeric = $bigQuery->numeric('99999999999999999999999999999999999999.999999999');

Namespace

Google \ Cloud \ BigQuery

Methods

__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

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年12月13日 UTC.