CREATE TABLE Tracks (
Track TEXT,
Duration TEXT,
Danceable TEXT,
Energy TEXT,
Emotion TEXT
);
INSERT INTO Tracks VALUES
('My Best Track', '01:05:30', 'very danceable', 'high energy', 'moody');
SELECT Track,
(case when Duration like '%05:%' then 1 else 0 end) +
(case when Danceable = 'not very danceable' then 1 else 0 end) +
(case when Energy = 'high energy' then 1 else 0 end) +
-- other cases
(case when Emotion = 'moody' then 1 else 0 end) as metrics_count
FROM Tracks