Skip to content

Instantly share code, notes, and snippets.

View dragongling's full-sized avatar
🎯
Focusing

Alexander Slesarenko dragongling

🎯
Focusing
  • ANKO Technologies Corp
  • Aktobe, Kazakhstan
View GitHub Profile
@dragongling
dragongling / Create_WeeklyReport.sql
Created November 18, 2021 14:31
WeeklyReport schema
create database WeeklyReport
go
use WeeklyReport;
create table Companies(
CompanyId int identity(1,1) primary key,
[Name] nvarchar(50) not null,
CreationDate datetime
);