kind of done. there is a mssql ML session, but not relevant right now
This commit is contained in:
@@ -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.
|
||||
*/
|
||||
|
||||
create database SampleDB2022_1b;
|
||||
go
|
||||
|
||||
use SampleDB2022_1b;
|
||||
go
|
||||
|
||||
create table tblSample1a(
|
||||
id int,
|
||||
code varchar(50));
|
||||
|
||||
create table tblSample1b(
|
||||
id int,
|
||||
code varchar(50));
|
||||
go
|
||||
Reference in New Issue
Block a user