Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Organizational Thinking vs SQLitea
- _____________________________________________
- A person has a can do relationship with a job.
- A job has a description.
- -------------------------------------
- The relationships come first.
- -----------
- sqlite> create table job (
- ...> job_name char(30) not null,
- ...> job_description var_char(1024) not null
- ...> ) ;
- sqlite> create table person (
- ...> go_by char(60) not null,
- ...> person_id integer primary key
- ...> );
- sqlite> select * from job;
- sqlite> select * from person ;
- sqlite> insert into job
- <erson' , 'Computer Guy, Smart With Computers, Computer Wizard, Programmer' );
- sqlite> insert into person values ( Dan, 0);
- SQL error: no such column: Dan
- sqlite> insert into person values ( 'Dan', 0 ) ;
- sqlite> select * from job;
- Computer Person|Computer Guy, Smart With Computers, Computer Wizard, Programmer
- sqlite> select * from person ;
- Dan|0
- ---------------
- Separation of Church and State
- Actually, relates, primarily to, the last form of Law, and Jurisprudence in the United States, Estate Law. And, so, as the Church shrinks from the lifes of the typical American, freedom, should expand to fill it's place.
- -------
- [ This shouldn't be here, but it has to stays,
- As Church has a Form of Organization , of it's own ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement