3d-interface/sql/all_elements.pgsql

5 lines
151 B
Plaintext
Raw Normal View History

2015-05-19 11:03:53 +02:00
SELECT user_id, arrow_id as elt_id, time, 'arrow' as elt FROM arrowclicked
UNION
SELECT user_id, coin_id, time, 'coin' FROM coinclicked
ORDER BY time;