sql_cheat_sheet
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sql_cheat_sheet [2019/11/27 04:18] – [Search All Text in a Database] stephen | sql_cheat_sheet [2025/01/13 22:44] (current) – stephen | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== SQL Cheat Sheet ====== | ====== SQL Cheat Sheet ====== | ||
+ | |||
+ | For Postgres SQL, see [[postgres_sql_cheat_sheet|Postgres SQL Cheat Sheet]] | ||
===== CREATE ===== | ===== CREATE ===== | ||
Line 28: | Line 30: | ||
FROM | FROM | ||
Table2 | Table2 | ||
+ | |||
+ | -- INSERTing multiple rows. | ||
+ | INSERT INTO Table1 | ||
+ | (Col1, | ||
+ | VALUES | ||
+ | (Data1, Data2, Data3) | ||
+ | , (Data1, Data2, Data3) | ||
</ | </ | ||
Line 39: | Line 48: | ||
Table1.Col1 = Table2.Col1 | Table1.Col1 = Table2.Col1 | ||
, Table1.Col2 = Table2.Col2 | , Table1.Col2 = Table2.Col2 | ||
+ | FROM | ||
+ | Table1 | ||
+ | INNER JOIN | ||
+ | Table2 | ||
+ | ON | ||
+ | Table2.Id = Table1.Id | ||
+ | </ | ||
+ | |||
+ | ===== DELETE ===== | ||
+ | |||
+ | <code sql> | ||
+ | -- Combining an UPDATE with a JOIN. | ||
+ | DELETE | ||
+ | Table1 | ||
FROM | FROM | ||
Table1 | Table1 | ||
Line 99: | Line 122: | ||
FROM | FROM | ||
Employee | Employee | ||
+ | </ | ||
+ | |||
+ | ===== Cascading Delete (work in progress) ===== | ||
+ | |||
+ | <code sql> | ||
+ | DECLARE @TargetTable VARCHAR(MAX) = ' | ||
+ | DECLARE @maxExpansions INT = 600 | ||
+ | |||
+ | DECLARE @FamilyTree TABLE ( | ||
+ | ObjectId | ||
+ | , TableName | ||
+ | , IsExpanded BIT NOT NULL | ||
+ | , [Path] | ||
+ | ) | ||
+ | |||
+ | INSERT | ||
+ | @FamilyTree (ObjectId, TableName, IsExpanded, [Path]) | ||
+ | SELECT | ||
+ | tables.object_id | ||
+ | , tables.[name] | ||
+ | , 0 | ||
+ | , tables.[name] | ||
+ | FROM | ||
+ | sys.tables | ||
+ | WHERE | ||
+ | sys.tables.[name] = @TargetTable | ||
+ | |||
+ | DECLARE @currentObjectId INT | ||
+ | DECLARE @currentExpansion INT = 0 | ||
+ | |||
+ | SELECT TOP 1 | ||
+ | @currentObjectId = [@FamilyTree].ObjectId | ||
+ | FROM | ||
+ | @FamilyTree | ||
+ | WHERE | ||
+ | [@FamilyTree].IsExpanded = 0 | ||
+ | |||
+ | WHILE @currentObjectId IS NOT NULL AND @currentExpansion < @maxExpansions | ||
+ | BEGIN | ||
+ | INSERT | ||
+ | @FamilyTree (ObjectId, TableName, IsExpanded, [Path]) | ||
+ | SELECT DISTINCT | ||
+ | ChildTable.object_id | ||
+ | , ChildTable.[name] | ||
+ | , 0 | ||
+ | , CONCAT ([@FamilyTree].[Path], | ||
+ | FROM | ||
+ | @FamilyTree | ||
+ | JOIN | ||
+ | sys.foreign_keys ForeignKey | ||
+ | ON ForeignKey.parent_object_id = [@FamilyTree].ObjectId | ||
+ | JOIN | ||
+ | sys.tables ChildTable | ||
+ | ON ChildTable.object_id = ForeignKey.referenced_object_id | ||
+ | WHERE | ||
+ | [@FamilyTree].ObjectId = @currentObjectId | ||
+ | |||
+ | UPDATE | ||
+ | @FamilyTree | ||
+ | SET | ||
+ | [@FamilyTree].IsExpanded = 1 | ||
+ | WHERE | ||
+ | [@FamilyTree].ObjectId = @currentObjectId | ||
+ | |||
+ | SELECT TOP 1 | ||
+ | @currentObjectId = [@FamilyTree].ObjectId | ||
+ | FROM | ||
+ | @FamilyTree | ||
+ | WHERE | ||
+ | [@FamilyTree].IsExpanded = 0 | ||
+ | |||
+ | SELECT @currentExpansion = @currentExpansion + 1 | ||
+ | END | ||
+ | |||
+ | SELECT DISTINCT | ||
+ | * | ||
+ | , CONCAT( | ||
+ | ' | ||
+ | , [@FamilyTree].TableName | ||
+ | , '] -- ' | ||
+ | , [@FamilyTree].[Path] | ||
+ | ) | ||
+ | FROM | ||
+ | @FamilyTree | ||
+ | ORDER BY | ||
+ | [@FamilyTree].[Path] DESC | ||
</ | </ | ||
Line 167: | Line 276: | ||
</ | </ | ||
- | ===== Determine the Data Types in Results of a Query===== | + | ===== Determine the Data Types in Results of a Query ===== |
<code sql> | <code sql> | ||
SELECT * FROM sys.dm_exec_describe_first_result_set( | SELECT * FROM sys.dm_exec_describe_first_result_set( | ||
| | ||
+ | </ | ||
+ | |||
+ | ===== Sort out Collation ===== | ||
+ | |||
+ | <code sql> | ||
+ | -- Determine the default collation for the server. | ||
+ | SELECT serverproperty(' | ||
+ | |||
+ | -- Convert a varchar to a specific collation. | ||
+ | SELECT CAST(' | ||
</ | </ | ||
Line 214: | Line 333: | ||
WHERE | WHERE | ||
SourceObjects.object_id IS NULL OR NewObjects.object_id IS NULL | SourceObjects.object_id IS NULL OR NewObjects.object_id IS NULL | ||
+ | </ | ||
+ | |||
+ | ===== Export a .bacpac By Command Line ===== | ||
+ | |||
+ | Install SqlPackage: | ||
+ | < | ||
+ | dotnet tool install -g microsoft.sqlpackage | ||
+ | </ | ||
+ | |||
+ | Export .backpac. Only add the '' | ||
+ | < | ||
+ | SqlPackage / | ||
</ | </ | ||
Line 311: | Line 442: | ||
</ | </ | ||
- | ===== List All Foreign Keys ===== | + | ===== Foreign Keys ===== |
+ | |||
+ | ==== Display Foreign Key Relationships for a Table ==== | ||
+ | |||
+ | Can do this, but it will only show which tables reference the specified table, not what tables the specified table references: | ||
+ | |||
+ | <code sql> | ||
+ | sp_fkeys TableName | ||
+ | </ | ||
+ | |||
+ | Better to do this, which lists all foreign key relationships and lots of other information as well: | ||
+ | |||
+ | <code sql> | ||
+ | sp_help TableName | ||
+ | </ | ||
+ | |||
+ | ==== Display All Foreign Key Info ==== | ||
<code sql> | <code sql> | ||
SELECT | SELECT | ||
- | | + | ForeignKey.[name] |
- | , ForeignKey.TABLE_SCHEMA | + | , PrimaryTable.[name] |
- | , ForeignKey.TABLE_NAME | + | , PrimaryColumn.[name] PrimaryColumn |
- | , ForeignKey.COLUMN_NAME | + | , ForeignTable.[name] |
- | , ReferentialConstraint.UNIQUE_CONSTRAINT_NAME PrimaryKey_Name | + | , ForeignColumn.[name] ForeignColumn |
- | , PrimaryKey.TABLE_SCHEMA | + | |
- | , PrimaryKey.TABLE_NAME | + | |
- | , PrimaryKey.COLUMN_NAME | + | |
- | , ReferentialConstraint.MATCH_OPTION | + | |
- | , ReferentialConstraint.UPDATE_RULE | + | |
- | , ReferentialConstraint.DELETE_RULE | + | |
FROM | FROM | ||
- | INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS ReferentialConstraint | + | sys.foreign_key_columns ForeignKeyColumn |
JOIN | JOIN | ||
- | INFORMATION_SCHEMA.KEY_COLUMN_USAGE | + | sys.foreign_keys |
- | ON ForeignKey.CONSTRAINT_NAME | + | ON ForeignKey.object_id |
JOIN | JOIN | ||
- | INFORMATION_SCHEMA.KEY_COLUMN_USAGE PrimaryKey | + | sys.columns PrimaryColumn |
- | ON PrimaryKey.CONSTRAINT_NAME | + | ON PrimaryColumn.object_id |
+ | AND PrimaryColumn.column_id = ForeignKeyColumn.referenced_column_id | ||
+ | JOIN | ||
+ | sys.tables PrimaryTable | ||
+ | ON PrimaryTable.object_id = ForeignKeyColumn.referenced_object_id | ||
+ | JOIN | ||
+ | sys.columns ForeignColumn | ||
+ | ON ForeignColumn.object_id = ForeignKeyColumn.parent_object_id | ||
+ | AND ForeignColumn.column_id = ForeignKeyColumn.parent_column_id | ||
+ | JOIN | ||
+ | sys.tables ForeignTable | ||
+ | ON ForeignTable.object_id = ForeignKeyColumn.parent_object_id | ||
+ | ORDER BY | ||
+ | PrimaryTable.[name] | ||
+ | , PrimaryColumn.[name] | ||
+ | , ForeignTable.[name] | ||
+ | , ForeignColumn.[name] | ||
+ | </ | ||
+ | |||
+ | ===== Display All Table Column Info ===== | ||
+ | |||
+ | <code sql> | ||
+ | SELECT | ||
+ | [Schema].[name] | ||
+ | , [Table].[name] | ||
+ | , [Column].[name] | ||
+ | , [ColumnType].[name] | ||
+ | , [Column].max_length | ||
+ | , [Column].[precision] [Precision] | ||
+ | , [Column].is_nullable Nullable | ||
+ | FROM | ||
+ | sys.tables [Table] | ||
+ | JOIN | ||
+ | sys.schemas [Schema] | ||
+ | ON [Schema].schema_id = [Table].schema_id | ||
+ | JOIN | ||
+ | sys.columns [Column] | ||
+ | ON [Column].object_id = [Table].object_id | ||
+ | JOIN | ||
+ | sys.types [ColumnType] | ||
+ | ON [ColumnType].system_type_id = [Column].system_type_id | ||
+ | ORDER BY | ||
+ | [Schema].[name] | ||
+ | , [Table].[name] | ||
+ | , [Column].[name] | ||
</ | </ | ||
Line 339: | Line 524: | ||
<code sql> | <code sql> | ||
- | DECLARE @searchText NVARCHAR(MAX) = N' | + | DECLARE @searchText NVARCHAR(20) = N' |
DECLARE @sql NVARCHAR(MAX) = N''; | DECLARE @sql NVARCHAR(MAX) = N''; | ||
Line 385: | Line 570: | ||
- Run the SQL below. | - Run the SQL below. | ||
+ | - Copy the results into the editor. | ||
- Remove the last '' | - Remove the last '' | ||
- Append the bit at the beginning. | - Append the bit at the beginning. | ||
<code sql> | <code sql> | ||
- | -- DECLARE @searchText NVARCHAR(10) = N' | + | -- DECLARE @searchText NVARCHAR(100) = N' |
SELECT | SELECT | ||
CONCAT( | CONCAT( | ||
Line 400: | Line 586: | ||
, ' | , ' | ||
, [COLUMN].[name] | , [COLUMN].[name] | ||
- | , '] AS [Data] FROM ' | + | , ' |
+ | , convert(NVARCHAR, | ||
+ | , ' | ||
, [TABLE].[name] | , [TABLE].[name] | ||
- | , ' WHERE [' | + | , '] WHERE [' |
, [TABLE].[name] | , [TABLE].[name] | ||
, ' | , ' | ||
Line 502: | Line 690: | ||
</ | </ | ||
- | ===== Determining Foreign Key Relationships ===== | ||
- | |||
- | Can do this, but it will only show which tables reference the specified table, not what tables the specified table references: | ||
- | |||
- | <code sql> | ||
- | sp_fkeys TableName | ||
- | </ | ||
- | |||
- | Better to do this, which lists all foreign key relationships and lots of other information as well: | ||
- | |||
- | <code sql> | ||
- | sp_help TableName | ||
- | </ | ||
===== Creating a Login or User ===== | ===== Creating a Login or User ===== |
sql_cheat_sheet.1574828339.txt.gz · Last modified: 2019/11/28 05:19 (external edit)