Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
SilasCosta
Participant





























1.2 Firewall configurations







1.3 Creating Database and table



https://docs.microsoft.com/en-us/azure/mysql/tutorial-design-database-using-portal#connect-to-the-se...















CREATE TABLE t_category (
Id_Category VARCHAR(50) PRIMARY KEY,
Category_Name VARCHAR(50),
Begin_Date VARCHAR(50),
Control VARCHAR(50),
End_Date VARCHAR(50)
);

INSERT INTO t_category (Id_Category, Category_Name, Begin_Date,Control,End_Date)
VALUES ('CAT0001', 'Senior manager', '21.02.2020', 'High','30.12.2999');
INSERT INTO t_category (Id_Category, Category_Name, Begin_Date,Control,End_Date)
VALUES ('CAT0002', 'Internal ', '21.02.2020', 'Low','30.12.2999');
INSERT INTO t_category (Id_Category, Category_Name, Begin_Date,Control,End_Date)
VALUES ('CAT0003', 'Conflict of intetest', '21.02.2020', 'Medium','30.12.2999');







Now we have our Mysql Database created and avaliable to be externally accessed.




Labels in this area