dayrize-usecase/dbt/models/material_lookup.sql

8 lines
159 B
MySQL
Raw Normal View History

2023-06-25 20:53:51 +02:00
SELECT * FROM (VALUES
('metal', 0.15),
('wood', 1),
('resin', 0),
('fabric', 0.5),
('plastic', 0.25)
) AS material_lookup(material, score)