Getting started with Spanner in PHP Stay organized with collections Save and categorize content based on your preferences.
Objectives
This tutorial walks you through the following steps using the Spannerclient library for PHP:
- Create a Spanner instance and database.
- Write, read, and execute SQL queries on data in the database.
- Update the database schema.
- Update data using a read-write transaction.
- Add a secondary index to the database.
- Use the index to read and execute SQL queries on data.
- Retrieve data using a read-only transaction.
Costs
This tutorial uses Spanner, which is a billable component of theGoogle Cloud. For information on the cost of using Spanner, seePricing.
Before you begin
Complete the steps described inSet up, which cover creating andsetting a default Google Cloud project, enabling billing, enabling theCloud Spanner API, and setting up OAuth 2.0 to get authentication credentials to usethe Cloud Spanner API.
In particular, make sure that you rungcloud authapplication-default loginto set up your local development environment with authenticationcredentials.
Prepare your local PHP environment
Follow the stepsinService accounts to set up a service account as your Application Default Credentials. Followingthose steps, you should obtain both a service account key file (in JSON) and a
GOOGLE_APPLICATION_CREDENTIALSenvironment variable that lets you authenticateto the Spanner API.Install the following on your development machine if they are not alreadyinstalled:
Clone the sample app repository to your local machine:
git clone https://github.com/GoogleCloudPlatform/php-docs-samplesAlternatively, you candownload the sample as a zip file and extract it.
Change to the directory that contains the Spanner sample code:
cd php-docs-samples/spannerInstall dependencies:
composer installThis installs the Spanner client library for PHP, which youcan add to any project by running
composer require google/cloud-spanner.
Create an instance
When you first use Spanner, you must create an instance, which is anallocation of resources that are used by Spanner databases. When youcreate an instance, you choose aninstance configuration, which determineswhere your data is stored, and also the number of nodes to use, which determinesthe amount of serving and storage resources in your instance.
SeeCreate an instanceto learn how to create a Spanner instance using any of thefollowing methods. You can name your instancetest-instance to use it withother topics in this document that reference an instance namedtest-instance.
- The Google Cloud CLI
- The Google Cloud console
- A client library (C++, C#, Go, Java, Node.js, PHP, Python, or Ruby)
Look through sample files
The samples repository contains a sample that shows how to use Spannerwith PHP.
Take a look at the functions insrc/create_database.php andsrc/add_column.php, which show how to create a database and modify a databaseschema. The data uses the example schema shown in theSchema and data model page.
Create a database
GoogleSQL
phpsrc/create_database.phptest-instanceexample-db
PostgreSQL
phpsrc/pg_create_database.phptest-instanceexample-db
You should see:
Created database example-db on instance test-instanceGoogleSQL
use Google\Cloud\Spanner\Admin\Database\V1\Client\DatabaseAdminClient;use Google\Cloud\Spanner\Admin\Database\V1\CreateDatabaseRequest;/** * Creates a database and tables for sample data. * Example: * ``` * create_database($instanceId, $databaseId); * ``` * * @param string $projectId The Google Cloud project ID. * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function create_database(string $projectId, string $instanceId, string $databaseId): void{ $databaseAdminClient = new DatabaseAdminClient(); $instance = $databaseAdminClient->instanceName($projectId, $instanceId); $operation = $databaseAdminClient->createDatabase( new CreateDatabaseRequest([ 'parent' => $instance, 'create_statement' => sprintf('CREATE DATABASE `%s`', $databaseId), 'extra_statements' => [ 'CREATE TABLE Singers (' . 'SingerId INT64 NOT NULL,' . 'FirstName STRING(1024),' . 'LastName STRING(1024),' . 'SingerInfo BYTES(MAX),' . 'FullName STRING(2048) AS' . '(ARRAY_TO_STRING([FirstName, LastName], " ")) STORED' . ') PRIMARY KEY (SingerId)', 'CREATE TABLE Albums (' . 'SingerId INT64 NOT NULL,' . 'AlbumId INT64 NOT NULL,' . 'AlbumTitle STRING(MAX)' . ') PRIMARY KEY (SingerId, AlbumId),' . 'INTERLEAVE IN PARENT Singers ON DELETE CASCADE' ] ]) ); print('Waiting for operation to complete...' . PHP_EOL); $operation->pollUntilComplete(); printf('Created database %s on instance %s' . PHP_EOL, $databaseId, $instanceId);}PostgreSQL
use Google\Cloud\Spanner\Admin\Database\V1\Client\DatabaseAdminClient;use Google\Cloud\Spanner\Admin\Database\V1\CreateDatabaseRequest;use Google\Cloud\Spanner\Admin\Database\V1\DatabaseDialect;use Google\Cloud\Spanner\Admin\Database\V1\GetDatabaseRequest;use Google\Cloud\Spanner\Admin\Database\V1\UpdateDatabaseDdlRequest;/** * Creates a database that uses Postgres dialect * * @param string $projectId The Google Cloud project ID. * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function pg_create_database(string $projectId, string $instanceId, string $databaseId): void{ $databaseAdminClient = new DatabaseAdminClient(); $instance = $databaseAdminClient->instanceName($projectId, $instanceId); $databaseName = $databaseAdminClient->databaseName($projectId, $instanceId, $databaseId); $table1Query = 'CREATE TABLE Singers ( SingerId bigint NOT NULL PRIMARY KEY, FirstName varchar(1024), LastName varchar(1024), SingerInfo bytea, FullName character varying(2048) GENERATED ALWAYS AS (FirstName || \' \' || LastName) STORED )'; $table2Query = 'CREATE TABLE Albums ( AlbumId bigint NOT NULL, SingerId bigint NOT NULL REFERENCES Singers (SingerId), AlbumTitle text, PRIMARY KEY(SingerId, AlbumId) )'; $operation = $databaseAdminClient->createDatabase( new CreateDatabaseRequest([ 'parent' => $instance, 'create_statement' => sprintf('CREATE DATABASE "%s"', $databaseId), 'extra_statements' => [], 'database_dialect' => DatabaseDialect::POSTGRESQL ]) ); print('Waiting for operation to complete...' . PHP_EOL); $operation->pollUntilComplete(); $request = new UpdateDatabaseDdlRequest([ 'database' => $databaseName, 'statements' => [$table1Query, $table2Query] ]); $operation = $databaseAdminClient->updateDatabaseDdl($request); $operation->pollUntilComplete(); $database = $databaseAdminClient->getDatabase( new GetDatabaseRequest(['name' => $databaseAdminClient->databaseName($projectId, $instanceId, $databaseId)]) ); $dialect = DatabaseDialect::name($database->getDatabaseDialect()); printf('Created database %s with dialect %s on instance %s' . PHP_EOL, $databaseId, $dialect, $instanceId);}The next step is to write data to your database.
Create a database client
To do reads and writes, you need to obtain an instance ofGoogle\Cloud\Spanner\Database.# Includes the autoloader for libraries installed with composerrequire __DIR__ . '/vendor/autoload.php';# Imports the Google Cloud client libraryuse Google\Cloud\Spanner\SpannerClient;# Your Google Cloud Platform project ID$projectId = 'YOUR_PROJECT_ID';# Instantiates a client$spanner = new SpannerClient([ 'projectId' => $projectId]);# Your Cloud Spanner instance ID.$instanceId = 'your-instance-id';# Get a Cloud Spanner instance by ID.$instance = $spanner->instance($instanceId);# Your Cloud Spanner database ID.$databaseId = 'your-database-id';# Get a Cloud Spanner database by ID.$database = $instance->database($databaseId);# Execute a simple SQL statement.$results = $database->execute('SELECT "Hello World" as test');foreach ($results as $row) { print($row['test'] . PHP_EOL);}You can think of aDatabase as a database connection: all of your interactionswith Spanner must go through aDatabase. Typically you create aDatabasewhen your application starts up, then you re-use thatDatabase to read, write,and execute transactions. Each client uses resources in Spanner.
If you create multiple clients in the same app, you should callDatabase::closeto clean up the client's resources, including network connections, as soon as itis no longer needed.
Read more in theDatabasereference.
Write data with DML
You can insert data using Data Manipulation Language (DML) in a read-writetransaction.
You use theexecuteUpdate() method to execute a DML statement.
use Google\Cloud\Spanner\SpannerClient;use Google\Cloud\Spanner\Transaction;/** * Inserts sample data into the given database with a DML statement. * * The database and table must already exist and can be created using * `create_database`. * Example: * ``` * insert_data($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function write_data_with_dml(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $database->runTransaction(function (Transaction $t) { $rowCount = $t->executeUpdate( 'INSERT Singers (SingerId, FirstName, LastName) VALUES ' . "(12, 'Melissa', 'Garcia'), " . "(13, 'Russell', 'Morales'), " . "(14, 'Jacqueline', 'Long'), " . "(15, 'Dylan', 'Shaw')"); $t->commit(); printf('Inserted %d row(s).' . PHP_EOL, $rowCount); });}Run the sample filesrc/write_data_with_dml.php.
php src/write_data_with_dml.php test-instance example-dbYou should see:
Inserted 4 row(s).Write data with mutations
You can also insert data usingmutations.
You write data using theDatabase::insertBatchmethod.insertBatch adds new rows to a table. All inserts in a singlebatch are applied atomically.
This code shows how to write the data using mutations:
use Google\Cloud\Spanner\SpannerClient;/** * Inserts sample data into the given database. * * The database and table must already exist and can be created using * `create_database`. * Example: * ``` * insert_data($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function insert_data(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $operation = $database->transaction(['singleUse' => true]) ->insertBatch('Singers', [ ['SingerId' => 1, 'FirstName' => 'Marc', 'LastName' => 'Richards'], ['SingerId' => 2, 'FirstName' => 'Catalina', 'LastName' => 'Smith'], ['SingerId' => 3, 'FirstName' => 'Alice', 'LastName' => 'Trentor'], ['SingerId' => 4, 'FirstName' => 'Lea', 'LastName' => 'Martin'], ['SingerId' => 5, 'FirstName' => 'David', 'LastName' => 'Lomond'], ]) ->insertBatch('Albums', [ ['SingerId' => 1, 'AlbumId' => 1, 'AlbumTitle' => 'Total Junk'], ['SingerId' => 1, 'AlbumId' => 2, 'AlbumTitle' => 'Go, Go, Go'], ['SingerId' => 2, 'AlbumId' => 1, 'AlbumTitle' => 'Green'], ['SingerId' => 2, 'AlbumId' => 2, 'AlbumTitle' => 'Forever Hold Your Peace'], ['SingerId' => 2, 'AlbumId' => 3, 'AlbumTitle' => 'Terrified'] ]) ->commit(); print('Inserted data.' . PHP_EOL);}Run the sample filesrc/insert_data.php.
php src/insert_data.php test-instance example-dbYou should see:
Inserted data.Query data using SQL
Spanner supports a SQL interface for reading data, which you canaccess on the command line using the Google Cloud CLI orprogrammatically usingthe Spanner client library for PHP.
On the command line
Execute the following SQL statement to read the values of all columns from theAlbums table:
gcloud spanner databases execute-sql example-db --instance=test-instance \ --sql='SELECT SingerId, AlbumId, AlbumTitle FROM Albums'The result shows:
SingerId AlbumId AlbumTitle1 1 Total Junk1 2 Go, Go, Go2 1 Green2 2 Forever Hold Your Peace2 3 TerrifiedUse the Spanner client library for PHP
In addition to executing a SQL statement on the command line, you can issue thesame SQL statement programmatically using the Spanner client library forPHP.
UseDatabase::execute()to run the SQL query.Here's how to issue the query and access the data:
use Google\Cloud\Spanner\SpannerClient;/** * Queries sample data from the database using SQL. * Example: * ``` * query_data($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function query_data(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $results = $database->execute( 'SELECT SingerId, AlbumId, AlbumTitle FROM Albums' ); foreach ($results as $row) { printf('SingerId: %s, AlbumId: %s, AlbumTitle: %s' . PHP_EOL, $row['SingerId'], $row['AlbumId'], $row['AlbumTitle']); }}Run the sample filesrc/query_data.php.
php src/query_data.php test-instance example-dbYou should see the following result:
SingerId: 2, AlbumId: 2, AlbumTitle: Forever Hold Your PeaceSingerId: 1, AlbumId: 2, AlbumTitle: Go, Go, GoSingerId: 2, AlbumId: 1, AlbumTitle: GreenSingerId: 2, AlbumId: 3, AlbumTitle: TerrifiedSingerId: 1, AlbumId: 1, AlbumTitle: Total JunkYour results won't necessarily be in this order. If you need to ensure theordering of the result, use anORDER BY clause, as documented inSQL best practices.
Query using a SQL parameter
If your application has a frequently executed query, you can improve itsperformance by parameterizing it. The resulting parametric query can be cachedand reused, which reduces compilation costs. For more information, seeUse query parameters to speed up frequently executed queries.
Here is an example of using a parameter in theWHERE clause to query recordscontaining a specific value forLastName.
GoogleSQL
use Google\Cloud\Spanner\SpannerClient;/** * Queries sample data from the database using SQL with a parameter. * Example: * ``` * query_data_with_parameter($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function query_data_with_parameter(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $results = $database->execute( 'SELECT SingerId, FirstName, LastName FROM Singers ' . 'WHERE LastName = @lastName', ['parameters' => ['lastName' => 'Garcia']] ); foreach ($results as $row) { printf('SingerId: %s, FirstName: %s, LastName: %s' . PHP_EOL, $row['SingerId'], $row['FirstName'], $row['LastName']); }}PostgreSQL
use Google\Cloud\Spanner\SpannerClient;/** * Execute a query with parameters on a Spanner PostgreSQL database. * The PostgreSQL dialect uses positional parameters, as * opposed to the named parameters of Cloud Spanner. * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function pg_query_parameter(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); printf('Listing all singers with a last name that starts with \'A\'' . PHP_EOL); $results = $database->execute( 'SELECT SingerId, FirstName, LastName' . ' FROM Singers' . ' WHERE LastName LIKE $1', [ 'parameters' => [ 'p1' => 'A%' ] ] ); foreach ($results as $row) { printf('SingerId: %s, Firstname: %s, LastName: %s' . PHP_EOL, $row['singerid'], $row['firstname'], $row['lastname']); }}Run the sample filesrc/query_data_with_parameter.php.
php src/query_data_with_parameter.php test-instance example-dbYou should see the following result:
SingerId: 12, FirstName: Melissa, LastName: GarciaRead data using the read API
In addition to Spanner's SQL interface, Spanner also supports aread interface.
UseDatabase::read()to read rows from the database. Use aKeySet object to define a collection ofkeys and key ranges to read.
Here's how to read the data:
use Google\Cloud\Spanner\SpannerClient;/** * Reads sample data from the database. * Example: * ``` * read_data($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function read_data(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $keySet = $spanner->keySet(['all' => true]); $results = $database->read( 'Albums', $keySet, ['SingerId', 'AlbumId', 'AlbumTitle'] ); foreach ($results->rows() as $row) { printf('SingerId: %s, AlbumId: %s, AlbumTitle: %s' . PHP_EOL, $row['SingerId'], $row['AlbumId'], $row['AlbumTitle']); }}Run the sample inread_data.php file.
php read_data.php test-instance example-dbYou should see output similar to:
SingerId: 1, AlbumId: 1, AlbumTitle: Total JunkSingerId: 1, AlbumId: 2, AlbumTitle: Go, Go, GoSingerId: 2, AlbumId: 1, AlbumTitle: GreenSingerId: 2, AlbumId: 2, AlbumTitle: Forever Hold your PeaceSingerId: 2, AlbumId: 3, AlbumTitle: TerrifiedUpdate the database schema
Assume you need to add a new column calledMarketingBudget to theAlbumstable. Adding a new column to an existing table requires an update to yourdatabase schema. Spanner supports schema updates to a database while thedatabase continues to serve traffic. Schema updates don't require taking thedatabase offline and they don't lock entire tables or columns; you can continuewriting data to the database during the schema update. Read more about supportedschema updates and schema change performance inMake schema updates.
Add a column
You can add a column on the command line using the Google Cloud CLI orprogrammatically usingthe Spanner client library for PHP.
On the command line
Use the followingALTER TABLE command toadd the new column to the table:
GoogleSQL
gcloud spanner databases ddl update example-db --instance=test-instance \ --ddl='ALTER TABLE Albums ADD COLUMN MarketingBudget INT64'PostgreSQL
gcloud spanner databases ddl update example-db --instance=test-instance \ --ddl='ALTER TABLE Albums ADD COLUMN MarketingBudget BIGINT'You should see:
Schema updating...done.Use the Spanner client library for PHP
UseDatabase::updateDdlto modify the schema:
GoogleSQL
use Google\Cloud\Spanner\Admin\Database\V1\Client\DatabaseAdminClient;use Google\Cloud\Spanner\Admin\Database\V1\UpdateDatabaseDdlRequest;/** * Adds a new column to the Albums table in the example database. * Example: * ``` * add_column($projectId, $instanceId, $databaseId); * ``` * * @param string $projectId The Google Cloud project ID. * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function add_column(string $projectId, string $instanceId, string $databaseId): void{ $databaseAdminClient = new DatabaseAdminClient(); $databaseName = DatabaseAdminClient::databaseName($projectId, $instanceId, $databaseId); $request = new UpdateDatabaseDdlRequest([ 'database' => $databaseName, 'statements' => ['ALTER TABLE Albums ADD COLUMN MarketingBudget INT64'] ]); $operation = $databaseAdminClient->updateDatabaseDdl($request); print('Waiting for operation to complete...' . PHP_EOL); $operation->pollUntilComplete(); printf('Added the MarketingBudget column.' . PHP_EOL);}PostgreSQL
use Google\Cloud\Spanner\Admin\Database\V1\Client\DatabaseAdminClient;use Google\Cloud\Spanner\Admin\Database\V1\UpdateDatabaseDdlRequest;/** * Add a column to a table present in a PG Spanner database. * * @param string $projectId The Google Cloud project ID. * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function pg_add_column(string $projectId, string $instanceId, string $databaseId): void{ $databaseAdminClient = new DatabaseAdminClient(); $databaseName = DatabaseAdminClient::databaseName($projectId, $instanceId, $databaseId); $statement = 'ALTER TABLE Albums ADD COLUMN MarketingBudget bigint'; $request = new UpdateDatabaseDdlRequest([ 'database' => $databaseName, 'statements' => [$statement] ]); $operation = $databaseAdminClient->updateDatabaseDdl($request); print('Waiting for operation to complete...' . PHP_EOL); $operation->pollUntilComplete(); print('Added column MarketingBudget on table Albums' . PHP_EOL);}Run the sample filesrc/add_column.php.
php src/add_column.php test-instance example-dbYou should see:
Added the MarketingBudget column.Write data to the new column
The following code writes data to the new column. It setsMarketingBudget to100000 for the row keyed byAlbums(1, 1) and to500000 for the row keyedbyAlbums(2, 2).
use Google\Cloud\Spanner\SpannerClient;/** * Updates sample data in the database. * * This updates the `MarketingBudget` column which must be created before * running this sample. You can add the column by running the `add_column` * sample or by running this DDL statement against your database: * * ALTER TABLE Albums ADD COLUMN MarketingBudget INT64 * * Example: * ``` * update_data($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function update_data(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $operation = $database->transaction(['singleUse' => true]) ->updateBatch('Albums', [ ['SingerId' => 1, 'AlbumId' => 1, 'MarketingBudget' => 100000], ['SingerId' => 2, 'AlbumId' => 2, 'MarketingBudget' => 500000], ]) ->commit(); print('Updated data.' . PHP_EOL);}Run the sample filesrc/update_data.php.
php src/update_data.php test-instance example-dbYou should see:
Updated data.You can also execute a SQL query or a read call to fetch the values that youjust wrote.
Here's the code to execute the query:
use Google\Cloud\Spanner\SpannerClient;/** * Queries sample data from the database using SQL. * This sample uses the `MarketingBudget` column. You can add the column * by running the `add_column` sample or by running this DDL statement against * your database: * * ALTER TABLE Albums ADD COLUMN MarketingBudget INT64 * * Example: * ``` * query_data_with_new_column($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function query_data_with_new_column(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $results = $database->execute( 'SELECT SingerId, AlbumId, MarketingBudget FROM Albums' ); foreach ($results as $row) { printf('SingerId: %s, AlbumId: %s, MarketingBudget: %d' . PHP_EOL, $row['SingerId'], $row['AlbumId'], $row['MarketingBudget']); }}To execute this query, run the sample filesrc/query-data-with-new-column.php.
php src/query_data_with_new_column.php test-instance example-dbYou should see:
SingerId: 1, AlbumId: 1, MarketingBudget: 100000SingerId: 1, AlbumId: 2, MarketingBudget: 0SingerId: 2, AlbumId: 1, MarketingBudget: 0SingerId: 2, AlbumId: 2, MarketingBudget: 500000SingerId: 2, AlbumId: 3, MarketingBudget: 0Update data
You can update data using DML in a read-write transaction.
You use theexecuteUpdate() method to execute a DML statement.
GoogleSQL
use Google\Cloud\Spanner\SpannerClient;use Google\Cloud\Spanner\Transaction;/** * Performs a read-write transaction to update two sample records in the * database. * * This will transfer 200,000 from the `MarketingBudget` field for the second * Album to the first Album. If the `MarketingBudget` for the second Album is * too low, it will raise an exception. * * Before running this sample, you will need to run the `update_data` sample * to populate the fields. * Example: * ``` * write_data_with_dml_transaction($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function write_data_with_dml_transaction(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $database->runTransaction(function (Transaction $t) { // Transfer marketing budget from one album to another. We do it in a transaction to // ensure that the transfer is atomic. $transferAmount = 200000; $results = $t->execute( 'SELECT MarketingBudget from Albums WHERE SingerId = 2 and AlbumId = 2' ); $resultsRow = $results->rows()->current(); $album2budget = $resultsRow['MarketingBudget']; // Transaction will only be committed if this condition still holds at the time of // commit. Otherwise it will be aborted and the callable will be rerun by the // client library. if ($album2budget >= $transferAmount) { $results = $t->execute( 'SELECT MarketingBudget from Albums WHERE SingerId = 1 and AlbumId = 1' ); $resultsRow = $results->rows()->current(); $album1budget = $resultsRow['MarketingBudget']; $album2budget -= $transferAmount; $album1budget += $transferAmount; // Update the albums $t->executeUpdate( 'UPDATE Albums ' . 'SET MarketingBudget = @AlbumBudget ' . 'WHERE SingerId = 1 and AlbumId = 1', [ 'parameters' => [ 'AlbumBudget' => $album1budget ] ] ); $t->executeUpdate( 'UPDATE Albums ' . 'SET MarketingBudget = @AlbumBudget ' . 'WHERE SingerId = 2 and AlbumId = 2', [ 'parameters' => [ 'AlbumBudget' => $album2budget ] ] ); $t->commit(); print('Transaction complete.' . PHP_EOL); } });}PostgreSQL
use Google\Cloud\Spanner\SpannerClient;use Google\Cloud\Spanner\Transaction;/** * * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function pg_dml_getting_started_update(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); // Transfer marketing budget from one album to another. We do it in a transaction to // ensure that the transfer is atomic. $database->runTransaction(function (Transaction $t) { $sql = 'SELECT marketingbudget as "MarketingBudget" from Albums WHERE ' . 'SingerId = 2 and AlbumId = 2'; $result = $t->execute($sql); $row = $result->rows()->current(); $budgetAlbum2 = $row['MarketingBudget']; $transfer = 200000; // Transaction will only be committed if this condition still holds at the time of // commit. Otherwise it will be aborted. if ($budgetAlbum2 > $transfer) { $sql = 'SELECT marketingbudget as "MarketingBudget" from Albums WHERE ' . 'SingerId = 1 and AlbumId = 1'; $result = $t->execute($sql); $row = $result->rows()->current(); $budgetAlbum1 = $row['MarketingBudget']; $budgetAlbum1 += $transfer; $budgetAlbum2 -= $transfer; $t->executeUpdateBatch([ [ 'sql' => 'UPDATE Albums ' . 'SET MarketingBudget = $1 ' . 'WHERE SingerId = 1 and AlbumId = 1', [ 'parameters' => [ 'p1' => $budgetAlbum1 ] ] ], [ 'sql' => 'UPDATE Albums ' . 'SET MarketingBudget = $1 ' . 'WHERE SingerId = 2 and AlbumId = 2', [ 'parameters' => [ 'p1' => $budgetAlbum2 ] ] ], ]); $t->commit(); print('Marketing budget updated.' . PHP_EOL); } else { $t->rollback(); } });}Run the sample filesrc/write_data_with_dml_transaction.php.
php src/write_data_with_dml_transaction.php test-instance example-dbYou should see:
Transaction complete.Use a secondary index
Suppose you wanted to fetch all rows ofAlbums that haveAlbumTitle valuesin a certain range. You could read all values from theAlbumTitle column usinga SQL statement or a read call, and then discard the rows that don't meet thecriteria, but doing this full table scan is expensive, especially for tableswith a lot of rows. Instead you can speed up the retrieval of rows whensearching by non-primary key columns by creating asecondary index on the table.
Adding a secondary index to an existing table requires a schema update. Likeother schema updates, Spanner supports adding an index while thedatabase continues to serve traffic. Spanner automatically backfills theindex with your existing data. Backfills might take a few minutes to complete,but you don't need to take the database offline or avoid writing to the indexedtable during this process. For more details, seeAdd a secondary index.
After you add a secondary index, Spanner automatically uses it forSQL queries that are likely to run faster with the index. If you use the readinterface, you must specify the index that you want to use.
Add a secondary index
You can add an index on the command line using the gcloud CLI orprogrammatically using the Spanner client library for PHP.
On the command line
Use the followingCREATE INDEXcommand to add an index to the database:
gcloudspannerdatabasesddlupdateexample-db--instance=test-instance\--ddl='CREATE INDEX AlbumsByAlbumTitle ON Albums(AlbumTitle)'You should see:
Schema updating...done.Using the Spanner client library for PHP
UseDatabase::updateDdlto add an index:
use Google\Cloud\Spanner\Admin\Database\V1\Client\DatabaseAdminClient;use Google\Cloud\Spanner\Admin\Database\V1\UpdateDatabaseDdlRequest;/** * Adds a simple index to the example database. * Example: * ``` * create_index($projectId, $instanceId, $databaseId); * ``` * * @param string $projectId The Google Cloud project ID. * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function create_index(string $projectId, string $instanceId, string $databaseId): void{ $databaseAdminClient = new DatabaseAdminClient(); $databaseName = DatabaseAdminClient::databaseName($projectId, $instanceId, $databaseId); $statement = 'CREATE INDEX AlbumsByAlbumTitle ON Albums(AlbumTitle)'; $request = new UpdateDatabaseDdlRequest([ 'database' => $databaseName, 'statements' => [$statement] ]); $operation = $databaseAdminClient->updateDatabaseDdl($request); print('Waiting for operation to complete...' . PHP_EOL); $operation->pollUntilComplete(); printf('Added the AlbumsByAlbumTitle index.' . PHP_EOL);}Run the sample filesrc/create_index.php.
php src/create_index.php test-instance example-dbAdding an index can take a few minutes. After the index is added, you shouldsee:
Added the AlbumsByAlbumTitle index.Read using the index
For SQL queries, Spanner automatically uses an appropriate index. In theread interface, you must specify the index in your request.
To use the index in the read interface, use theDatabase::read method.
use Google\Cloud\Spanner\SpannerClient;/** * Reads sample data from the database using an index. * * The index must exist before running this sample. You can add the index * by running the `add_index` sample or by running this DDL statement against * your database: * * CREATE INDEX AlbumsByAlbumTitle ON Albums(AlbumTitle) * * Example: * ``` * read_data_with_index($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function read_data_with_index(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $keySet = $spanner->keySet(['all' => true]); $results = $database->read( 'Albums', $keySet, ['AlbumId', 'AlbumTitle'], ['index' => 'AlbumsByAlbumTitle'] ); foreach ($results->rows() as $row) { printf('AlbumId: %s, AlbumTitle: %s' . PHP_EOL, $row['AlbumId'], $row['AlbumTitle']); }}Run the sample filesrc/read_data_with_index.php.
php src/read_data_with_index.php test-instance example-dbYou should see:
AlbumId: 2, AlbumTitle: Forever Hold your PeaceAlbumId: 2, AlbumTitle: Go, Go, GoAlbumId: 1, AlbumTitle: GreenAlbumId: 3, AlbumTitle: TerrifiedAlbumId: 1, AlbumTitle: Total JunkAdd an index for index-only reads
You might have noticed that the previous read example doesn't include readingtheMarketingBudget column. This is because Spanner's read interfacedoesn't support the ability to join an index with a data table to look up valuesthat are not stored in the index.
Create an alternate definition ofAlbumsByAlbumTitle that stores a copy ofMarketingBudget in the index.
On the command line
GoogleSQL
gcloud spanner databases ddl update example-db --instance=test-instance \ --ddl='CREATE INDEX AlbumsByAlbumTitle2 ON Albums(AlbumTitle) STORING (MarketingBudget)PostgreSQL
gcloud spanner databases ddl update example-db --instance=test-instance \ --ddl='CREATE INDEX AlbumsByAlbumTitle2 ON Albums(AlbumTitle) INCLUDE (MarketingBudget)Adding an index can take a few minutes. After the index is added, you shouldsee:
Schema updating...done.Using the Spanner client library for PHP
UseDatabase::updateDdlto add an index with aSTORING clause:use Google\Cloud\Spanner\Admin\Database\V1\Client\DatabaseAdminClient;use Google\Cloud\Spanner\Admin\Database\V1\UpdateDatabaseDdlRequest;/** * Adds an storing index to the example database. * * This sample uses the `MarketingBudget` column. You can add the column * by running the `add_column` sample or by running this DDL statement against * your database: * * ALTER TABLE Albums ADD COLUMN MarketingBudget INT64 * * Example: * ``` * create_storing_index($projectId, $instanceId, $databaseId); * ``` * * @param string $projectId The Google Cloud project ID. * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function create_storing_index(string $projectId, string $instanceId, string $databaseId): void{ $databaseAdminClient = new DatabaseAdminClient(); $databaseName = DatabaseAdminClient::databaseName($projectId, $instanceId, $databaseId); $statement = 'CREATE INDEX AlbumsByAlbumTitle2 ON Albums(AlbumTitle) ' . 'STORING (MarketingBudget)'; $request = new UpdateDatabaseDdlRequest([ 'database' => $databaseName, 'statements' => [$statement] ]); $operation = $databaseAdminClient->updateDatabaseDdl($request); print('Waiting for operation to complete...' . PHP_EOL); $operation->pollUntilComplete(); printf('Added the AlbumsByAlbumTitle2 index.' . PHP_EOL);}Run the sample filesrc/create_storing_index.php.
php src/create_storing_index.php test-instance example-dbYou should see:
Added the AlbumsByAlbumTitle2 index.Now you can execute a read that fetches allAlbumId,AlbumTitle, andMarketingBudget columns from theAlbumsByAlbumTitle2 index:
use Google\Cloud\Spanner\SpannerClient;/** * Reads sample data from the database using an index with a storing * clause. * * The index must exist before running this sample. You can add the index * by running the `add_storing_index` sample or by running this DDL statement * against your database: * * CREATE INDEX AlbumsByAlbumTitle2 ON Albums(AlbumTitle) * STORING (MarketingBudget) * * Example: * ``` * read_data_with_storing_index($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function read_data_with_storing_index(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $keySet = $spanner->keySet(['all' => true]); $results = $database->read( 'Albums', $keySet, ['AlbumId', 'AlbumTitle', 'MarketingBudget'], ['index' => 'AlbumsByAlbumTitle2'] ); foreach ($results->rows() as $row) { printf('AlbumId: %s, AlbumTitle: %s, MarketingBudget: %d' . PHP_EOL, $row['AlbumId'], $row['AlbumTitle'], $row['MarketingBudget']); }}Run the sample filesrc/read_data_with_storing_index.php.
php src/read_data_with_storing_index.php test-instance example-dbYou should see output similar to:
AlbumId: 2, AlbumTitle: Forever Hold your Peace, MarketingBudget: 300000AlbumId: 2, AlbumTitle: Go, Go, Go, MarketingBudget: 0AlbumId: 1, AlbumTitle: Green, MarketingBudget: 0AlbumId: 3, AlbumTitle: Terrified, MarketingBudget: 0AlbumId: 1, AlbumTitle: Total Junk, MarketingBudget: 300000Retrieve data using read-only transactions
Suppose you want to execute more than one read at the same timestamp.Read-onlytransactions observe a consistentprefix of the transaction commit history, so your application always getsconsistent data.Use aSnapshotobject for executing read-only transactions. Use theDatabase::snapshotmethod to get aSnapshot object.
The following shows how to run a query and perform a read in the same read-onlytransaction:
use Google\Cloud\Spanner\SpannerClient;/** * Reads data inside of a read-only transaction. * * Within the read-only transaction, or "snapshot", the application sees * consistent view of the database at a particular timestamp. * Example: * ``` * read_only_transaction($instanceId, $databaseId); * ``` * * @param string $instanceId The Spanner instance ID. * @param string $databaseId The Spanner database ID. */function read_only_transaction(string $instanceId, string $databaseId): void{ $spanner = new SpannerClient(); $instance = $spanner->instance($instanceId); $database = $instance->database($databaseId); $snapshot = $database->snapshot(); $results = $snapshot->execute( 'SELECT SingerId, AlbumId, AlbumTitle FROM Albums' ); print('Results from the first read:' . PHP_EOL); foreach ($results as $row) { printf('SingerId: %s, AlbumId: %s, AlbumTitle: %s' . PHP_EOL, $row['SingerId'], $row['AlbumId'], $row['AlbumTitle']); } // Perform another read using the `read` method. Even if the data // is updated in-between the reads, the snapshot ensures that both // return the same data. $keySet = $spanner->keySet(['all' => true]); $results = $database->read( 'Albums', $keySet, ['SingerId', 'AlbumId', 'AlbumTitle'] ); print('Results from the second read:' . PHP_EOL); foreach ($results->rows() as $row) { printf('SingerId: %s, AlbumId: %s, AlbumTitle: %s' . PHP_EOL, $row['SingerId'], $row['AlbumId'], $row['AlbumTitle']); }}Run the sample filesrc/read_only_transaction.php.
php src/read_only_transaction.php test-instance example-dbYou should see output similar to:
Results from first read:SingerId: 2, AlbumId: 2, AlbumTitle: Forever Hold Your PeaceSingerId: 1, AlbumId: 2, AlbumTitle: Go, Go, GoSingerId: 2, AlbumId: 1, AlbumTitle: GreenSingerId: 2, AlbumId: 3, AlbumTitle: TerrifiedSingerId: 1, AlbumId: 1, AlbumTitle: Total JunkResults from second read:SingerId: 1, AlbumId: 1, AlbumTitle: Total JunkSingerId: 1, AlbumId: 2, AlbumTitle: Go, Go, GoSingerId: 2, AlbumId: 1, AlbumTitle: GreenSingerId: 2, AlbumId: 2, AlbumTitle: Forever Hold Your PeaceSingerId: 2, AlbumId: 3, AlbumTitle: TerrifiedCleanup
To avoid incurring additional charges to your Cloud Billing account for theresources used in this tutorial, drop the database and delete the instance thatyou created.
Delete the database
If you delete an instance, all databases within it are automatically deleted.This step shows how to delete a database without deleting an instance (you wouldstill incur charges for the instance).
On the command line
gcloud spanner databases delete example-db --instance=test-instanceUsing the Google Cloud console
Go to theSpanner Instances page in the Google Cloud console.
Click the instance.
Click the database that you want to delete.
In theDatabase details page, clickDelete.
Confirm that you want to delete the database and clickDelete.
Delete the instance
Deleting an instance automatically drops all databases created in that instance.
On the command line
gcloud spanner instances delete test-instanceUsing the Google Cloud console
Go to theSpanner Instances page in the Google Cloud console.
Click your instance.
ClickDelete.
Confirm that you want to delete the instance and clickDelete.
What's next
Learn how toaccess Spanner with a virtual machine instance.
Learn about authorization and authentication credentials inAuthenticate toCloud services using client libraries.
Learn more about SpannerSchema design best practices.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-02-19 UTC.