| Onega's profileOnegaBlogListsNetwork | Help |
|
|
October 27 Join sample on PostgreSQLHere is a simple example that demonstrate usage of INNER, FULL, LEFT and RIGHT JOIN. Create 2 tables
inner join is implicit. The following two produce the same result. select * from p1,p2 where p1.pid=p2.pid;
select * from p1 left join p2 on p1.pid=p2.pid;
1;"p1";1;"t1"
March 26 sqlite automatic commit and manual commitNumber of records inserted: 2008 OS: Windows XP SP2 SQLite 3.5.7 Machine: Compaq nc6230 By: Onega
Resource on DDJ:The SQLite Database Engine An embeddable SQL database with a C/C++ interface March 24 sqlite3 sampleThere is a quick start in its official web site, but I think another example(Embedding SQLite in a C program) is much better. |
|
|