Skip to content

Instantly share code, notes, and snippets.

View piotrswiecik's full-sized avatar
😏

Piotr piotrswiecik

😏
  • Ives System
  • Warsaw
View GitHub Profile
@piotrswiecik
piotrswiecik / SQL Server commands and queries.md
Created January 19, 2022 21:38 — forked from ashish2199/SQL Server commands and queries.md
List of Microsoft SQL Server queries and commands

To create a Table

	create table risk_clos_rank(
		id_num int IDENTITY(1,1) NOT NULL,
	    username nvarchar(100),
	    datetime_of_decision DATETIME
	);
	
	CREATE TABLE TheNameOfYourTable (
 ID INT NOT NULL IDENTITY(1,1),