|
|
|
|
@ -2,10 +2,11 @@ CREATE OR REPLACE TABLE engineer_contributions AS
|
|
|
|
|
SELECT CONCAT(users.lname, ', ', users.fname) AS `Engineer`,
|
|
|
|
|
project_lifecycle.project_number AS `Project Number`,
|
|
|
|
|
project_lifecycle.timestamp,
|
|
|
|
|
substr(new_value, 2) AS `Project Type`,
|
|
|
|
|
substr(new_value, 2) AS `Action Type`,
|
|
|
|
|
CONCAT(SUBSTR(project_lifecycle.project_number, 1, 3), ' - ',
|
|
|
|
|
IF(ap.proj_type = 'Warranty', 'Structural', ap.proj_type)) as `Region`,
|
|
|
|
|
clients.name as `Client`
|
|
|
|
|
IF(ap.proj_type = 'Warranty', 'Structural', ap.proj_type)) AS `Region`,
|
|
|
|
|
clients.name AS `Client`,
|
|
|
|
|
all_projects.description AS `Description`
|
|
|
|
|
FROM users
|
|
|
|
|
INNER JOIN project_lifecycle ON pkey = modifier
|
|
|
|
|
INNER JOIN all_projects ap on project_lifecycle.project_number = ap.refnum
|
|
|
|
|
|