Preview — Gemini in Spanner
This feature is subject to the "Pre-GA Offerings Terms" in the General Service Terms section of the Service Specific Terms. Pre-GA features are available "as is" and might have limited support. For more information, see the launch stage descriptions.
This document describes how you can use Gemini Code Assist to get AI-powered assistance with the following in Spanner:
Learn how and when Gemini for Google Cloud uses your data.
This document is intended for database administrators and data engineers who are familiar with Spanner, SQL, and data analysis. If you're new to Spanner, see Create and query a database by using the Google Cloud console.
Note: Coding assistance is part of Gemini Code Assist and is available at no charge until it's included in Gemini Code Assist Standard edition. This change will be communicated at a later date. At that time, you will need to acquire a Gemini Code Assist Standard edition license to continue to use coding assistance in Spanner Studio.Before you begin
Optional: Set up Gemini Code Assist.
To complete the tasks in this document, ensure that you have the necessary Identity and Access Management (IAM) permissions.
In the Google Cloud console, go to the Spanner page.
Select an instance from the list.
Select a database.
In the navigation menu, click Spanner Studio.
In Spanner Studio, click the settings_suggestion Gemini Code Assist button to view Gemini features in Spanner.
Select the Gemini features that you want to enablefor example, Comment-to-query generation. You can select and try features for yourself without affecting others working in your project.
Optional: If you want to follow along with the examples in this document, first create the
Singerstable as described in Create a schema for your database.
To disable Gemini features in Spanner, repeat these steps, and then deselect the Gemini features that you want to disable.
Required roles
To get the permissions that
you need to complete the tasks in this document,
ask your administrator to grant you the
Gemini for Google Cloud User (roles/cloudaicompanion.user) IAM role on the project.
For more information about granting roles, see Manage access to projects, folders, and organizations.
You might also be able to get the required permissions through custom roles or other predefined roles.
Generate SQL queries using natural language prompts
As an early-stage technology, Gemini for Google Cloud products can generate output that seems plausible but is factually incorrect. We recommend that you validate all output from Gemini for Google Cloud products before you use it. For more information, see Gemini for Google Cloud and responsible AI.
You can give Gemini natural language comments (or prompts) to generate queries that are based on your schema. For example, you can prompt Gemini to generate SQL in response to the following prompts:
- "Create a table that tracks customer satisfaction survey results."
- "Add a date column called birthday to the Singers table."
- "How many singers were born in the 90s?"
To generate SQL in Spanner with Gemini assistance, follow these steps:
In the Google Cloud console, go to the Spanner page.
Select an instance from the list.
Select a database.
In the navigation pane, click Spanner Studio. The Explorer pane displays a list of objects in your database.
To query your database, click the New tab. Make sure that SQL generation is enabled.
To generate SQL, type a comment in the query editor starting with
--followed by a single-line comment, and then pressReturn.For example, if you enter the prompt
-- add a row to table singersand pressReturn, then Gemini generates SQL that's similar to the following:INSERT INTO Singers (SingerId, FirstName, LastName, BirthDate) VALUES (1, Alex, 'M.', '1977-10-16');To continue the example using the
Singerstable, if you enter the prompt-- show all singers born in the 70s, then Gemini generates SQL that's similar to the following:
Note: Gemini might suggest different syntax each time that you enter the same prompt.SELECT * FROM Singers WHERE Singers.BirthDate BETWEEN '1970-01-01' AND '1979-12-31'Review the generated SQL and take any of the following actions:
- To accept SQL generated by Gemini, press
Tab, and then click Run to execute the suggested SQL. - To edit the SQL generated by Gemini, press
Tab, edit the SQL, and then click Run. - To dismiss the suggestion, press
Escor continue typing.
- To accept SQL generated by Gemini, press
Explain SQL statements in the query editor
You can use Gemini in Spanner to explain SQL queries in natural language. This explanation can help you understand the syntax, underlying schema, and business context for complex or long queries.
In the Google Cloud console, go to the Spanner page.
Select an instance from the list.
Select a database.
In the navigation pane, click Spanner Studio.
To query your database, click the New tab.
In the query editor, paste the query.
Highlight the query that you want Gemini to explain, and then click astrophotography_mode Explain this selected query.
The SQL explanation appears in the Gemini Cloud Assist pane.
Use Gemini to fix errors in queries
Preview — Gemini Code Assist
This feature is subject to the "Pre-GA Offerings Terms" in the General Service Terms section of the Service Specific Terms. You can process personal data for this feature as outlined in the Cloud Data Processing Addendum, subject to the obligations and restrictions described in the agreement under which you access Google Cloud. Pre-GA features are available "as is" and might have limited support. For more information, see the launch stage descriptions.
Gemini offers an extended capability that helps you fix errors in your Spanner queries without having to leave the query editor.
Gemini's AI-powered capabilities are integrated within Spanner Studio to provide the following benefits:
- Provides a line-for-line comparison of the original query next to a new query with recommended changes using the query editor.
- Highlights segments of the original query that might be causing the issue and provides a natural-language summary of changes.
- References the exact error message and schema information associated with the query to provide accurate, relevant corrections.
- Eliminates the need to rely on third-party, general-purpose LLMs that might provide less-nuanced help and might also expose your data to potential security risks.
- Provides faster, more efficient troubleshooting for common issues such as syntax, schema, and runtime errors.
Required permissions
Before you begin, confirm you have the following permissions:
- The roles outlined in Required roles.
- The Gemini for Google Cloud API permission,
cloudaicompanion.googleapis.com/instances.generateCode.
Fix your query using Gemini
To use Gemini's capabilities to fix certain errors in a query, complete the following:
In the query editor, run your query.
If the query contains an error, an error message is returned in an error banner at the bottom of the editor.
Click Fix.
In the query window, a differences editor ("diff editor") opens in the tab, showing a line-for-line comparison of the existing query with recommended changes. The query editor also provides a summary of the suggested edits.
Review the suggested changes to the query and update as needed.
To accept the changes and run your new query, click Accept and run.
Limitations
- This capability is only accessible in Spanner Studio query editor in Google Cloud console.
- Current Gemini context window limits apply.