First: using a prefix of tbl is generally regarded strange outside the Microsoft World.
To create the tables, just run the approriate CREATE TABLE statements. The syntax including a description of the available data types are explained in detail in the manual:
http://www.postgresql.org/docs/curre...eatetable.html
There is also a tutorial in the manual that gives an introduction on how to create tables:
http://www.postgresql.org/docs/9.1/s...ial-table.html
To build up "relationships" you have to define foreign keys. In the manual's tutorial section is a chapter about them:
http://www.postgresql.org/docs/9.1/s...torial-fk.html
A complete description is available in the chapter about data definition:
http://www.postgresql.org/docs/9.1/s...CONSTRAINTS-FK
I hope these links will get you started.
I highly recommend you read the complete tutorial in the PostgreSQL manual. Not only to learn about PostgreSQL but also to learn about the building blocks of the SQL language.
If you have any specific problems, please post the statements you are having problems with including the exact error messages.
Please format any code using [code] tags. Details about how to do that can be found here:
http://www.dbforums.com/misc.php?do=bbcode