diff --git a/pages/common/dolt-sql.md b/pages/common/dolt-sql.md index c09a2689e..941be8617 100644 --- a/pages/common/dolt-sql.md +++ b/pages/common/dolt-sql.md @@ -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: . - Run a single query: diff --git a/pages/common/dotnet-ef.md b/pages/common/dotnet-ef.md index 13a46ecf0..7b4fd6165 100644 --- a/pages/common/dotnet-ef.md +++ b/pages/common/dotnet-ef.md @@ -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}}` diff --git a/pages/common/duckdb.md b/pages/common/duckdb.md index 03e150fff..7a37fbc82 100644 --- a/pages/common/duckdb.md +++ b/pages/common/duckdb.md @@ -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}}"` diff --git a/pages/common/gcloud-sql-export-sql.md b/pages/common/gcloud-sql-export-sql.md index 5fbea44bc..74766acd2 100644 --- a/pages/common/gcloud-sql-export-sql.md +++ b/pages/common/gcloud-sql-export-sql.md @@ -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: . -- 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}}` diff --git a/pages/common/mysqlsh.md b/pages/common/mysqlsh.md index cc8787b92..4b92e2278 100644 --- a/pages/common/mysqlsh.md +++ b/pages/common/mysqlsh.md @@ -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}}'` diff --git a/pages/common/textql.md b/pages/common/textql.md index 23352a066..93deffd7c 100644 --- a/pages/common/textql.md +++ b/pages/common/textql.md @@ -3,7 +3,7 @@ > Execute SQL against structured text like csv or tsv files. > More information: . -- 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}}` diff --git a/pages/linux/dnsrecon.md b/pages/linux/dnsrecon.md index 7c0e498c6..a15d35a15 100644 --- a/pages/linux/dnsrecon.md +++ b/pages/linux/dnsrecon.md @@ -3,7 +3,7 @@ > DNS enumeration tool. > More information: . -- 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}}`