mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
5 lines
144 B
Plaintext
5 lines
144 B
Plaintext
create or replace view objects_view as
|
|
select o.*, t.name object_template
|
|
from objects o, object_templates t
|
|
where o.object_template_id = t.id;
|