pages*: use "an SQL" instead of "a SQL" (#12336)

pull/23/head
Vitor Henrique 2024-02-23 05:21:08 -03:00 committed by GitHub
parent 51e52ebdf5
commit 35c4564372
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# dolt sql
> Run a SQL query. Multiple SQL statements must be separated by semicolons.
> Run an SQL query. Multiple SQL statements must be separated by semicolons.
> More information: <https://docs.dolthub.com/cli-reference/cli#dolt-sql>.
- Run a single query:

View File

@ -31,6 +31,6 @@
`dotnet ef migrations list`
- Generate a SQL script from migrations range:
- Generate an SQL script from migrations range:
`dotnet ef migrations script {{from_migration}} {{to_migration}}`

View File

@ -15,7 +15,7 @@
`duckdb -c "{{SELECT * FROM 'data_source.[csv|csv.gz|json|json.gz|parquet]'}}"`
- Run a SQL script:
- Run an SQL script:
`duckdb -c ".read {{path/to/script.sql}}"`

View File

@ -1,10 +1,10 @@
# gcloud sql export sql
> Export data from a Cloud SQL instance to a SQL file in Google Cloud Storage.
> Export data from a Cloud SQL instance to an SQL file in Google Cloud Storage.
> Useful for creating backups or migrating data. See also: `gcloud`.
> More information: <https://cloud.google.com/sdk/gcloud/reference/sql/export/sql>.
- Export data from a specific Cloud SQL instance to a Google Cloud Storage bucket as a SQL dump file:
- Export data from a specific Cloud SQL instance to a Google Cloud Storage bucket as an SQL dump file:
`gcloud sql export sql {{instance}} gs://{{bucket_name}}/{{file_name}}`

View File

@ -12,7 +12,7 @@
`mysqlsh --user {{username}} --host {{hostname}} --port {{port}}`
- Execute a SQL statement on the server and exit:
- Execute an SQL statement on the server and exit:
`mysqlsh --user {{username}} --execute '{{sql_statement}}'`

View File

@ -3,7 +3,7 @@
> Execute SQL against structured text like csv or tsv files.
> More information: <https://github.com/dinedal/textql>.
- Print the lines in the specified `.csv` file that match a SQL query to `stdout`:
- Print the lines in the specified `.csv` file that match an SQL query to `stdout`:
`textql -sql "{{SELECT * FROM filename}}" {{path/to/filename.csv}}`

View File

@ -3,7 +3,7 @@
> DNS enumeration tool.
> More information: <https://github.com/darkoperator/dnsrecon>.
- Scan a domain and save the results to a SQLite database:
- Scan a domain and save the results to an SQLite database:
`dnsrecon --domain {{example.com}} --db {{path/to/database.sqlite}}`