24 lines
629 B
Transact-SQL
24 lines
629 B
Transact-SQL
/*
|
|
* Created for the online course on Udemy: "Working with Python® on Windows® and SQL Server® Databases"
|
|
*
|
|
* Course URL:
|
|
* https://www.udemy.com/course/python-windows-sql-server
|
|
*
|
|
* Author/Instructor: Artemakis Artemiou
|
|
*
|
|
* Disclaimer: This SQL script which is part of the online course on Udemy "Working with Python® on Windows®
|
|
* and SQL Server® Databasess", is intended to be used only for demo purposes. Do not
|
|
* use it for Production systems as it is simplified for demo purposes.
|
|
*/
|
|
|
|
create database SampleDB2022_1a;
|
|
go
|
|
|
|
use SampleDB2022_1a;
|
|
go
|
|
|
|
create table tblSample1a(
|
|
id int,
|
|
code varchar(50));
|
|
go
|