diff --git a/MySQL/Skript_DDL.sql b/MySQL/Skript_DDL.sql index 37f0b80..779a2b2 100644 --- a/MySQL/Skript_DDL.sql +++ b/MySQL/Skript_DDL.sql @@ -1,3 +1,5 @@ +-- Test von ronny + DROP DATABASE IF EXISTS inventarisierungsloesung; CREATE DATABASE IF NOT EXISTS Inventarisierungsloesung diff --git a/MySQL/Skript_POD_View.sql b/MySQL/Skript_POD_View.sql new file mode 100644 index 0000000..b7173e6 --- /dev/null +++ b/MySQL/Skript_POD_View.sql @@ -0,0 +1,9 @@ +CREATE + ALGORITHM = UNDEFINED + DEFINER = `root`@`localhost` + SQL SECURITY DEFINER +VIEW `inventarisierungsloesung`.`v_usageperlocation` AS + SELECT + `inventarisierungsloesung`.`pointofdelivery`.`designation` AS `designation` + FROM + `inventarisierungsloesung`.`pointofdelivery` \ No newline at end of file