3 lines
98 B
MySQL
3 lines
98 B
MySQL
|
CREATE VIEW requests_vw AS
|
||
|
SELECT * FROM requests WHERE state = 'Requested' ORDER BY score DESC;
|