View hinzugefügt

This commit is contained in:
Ronny Wyss 2018-12-18 16:17:24 +01:00
parent 6a7e5de347
commit 6b63816738
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,5 @@
-- Test von ronny
DROP DATABASE IF EXISTS inventarisierungsloesung;
CREATE DATABASE IF NOT EXISTS Inventarisierungsloesung

View File

@ -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`