kind of done. there is a mssql ML session, but not relevant right now

This commit is contained in:
Bartal Læarsson
2026-02-17 13:39:00 +00:00
parent 72176b2be0
commit c0237a4314
9 changed files with 295 additions and 18 deletions
@@ -0,0 +1,27 @@
/*
* 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.
*/
use SampleDB2022_1a;
go
insert into tblSample1a
values (1,'test1'), (2,'test2');
create table tblSample1b(
id int,
code varchar(50));
go
insert into tblSample1b
values (1,'test1'), (2,'test2');
go