Plan 9 from Bell Labs’s /usr/web/sources/contrib/lucio/pub/openldap/servers/slapd/back-sql/rdbms_depend/timesten/tttestdb_data.sql

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


insert into institutes (id,name) values (1,'sql');

insert into persons (id,name, title, title_U, organization) values 
(1,'Mitya Kovalev', 'Engineer', 'ENGINEER', 'Development');
insert into persons (id,name, title, title_U, organization) values 
(2,'Torvlobnor Puzdoy', 'Engineer', 'ENGINEER', 'Sales');
insert into persons (id,name, title, title_U, organization) values 
(3,'Akakiy Zinberstein', 'Engineer', 'ENGINEER', 'Marketing');
update persons set name_u = upper(name);

insert into phones (id,phone,pers_id) values (1,'332-2334',1);
insert into phones (id,phone,pers_id) values (2,'222-3234',1);
insert into phones (id,phone,pers_id) values (3,'545-4563',2);

insert into documents (id,abstract,title) values (1,'abstract1','book1');
insert into documents (id,abstract,title) values (2,'abstract2','book2');

insert into authors_docs (pers_id,doc_id) values (1,1);
insert into authors_docs (pers_id,doc_id) values (1,2);
insert into authors_docs (pers_id,doc_id) values (2,1);

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.