I have been using MySQL for a while now but have been wondering about using PostgreSQL. I hope someone can answer these questions or point me in the right direction.
Is there a place where I can view a comparrison of MySQL vs PostgreSQL? Or can someone give me a good overview?
I've heard that PostgreSQL supports referential integrity. Is this true? Does MySQL support this as well. Foreign keys in MySQL are a bit of a mystery to me.
Let's say I have 2 tables:
Table1
- id (primary key)
- column1
Table2
- id (primary key)
- table1_id (foreign key from Table1)
- column1
I want to delete a record from table 1. Will either PostgreSQL or MySQL simply delete the record from Table1 and its corresponding entries for Table2? Or will I have to first delete the entries from Table2 then once their gone delete the entries from Table1.
I want to be able to put multiple languages (English,Chinese,Spanish...) into fields in my database. How would I do this and how hard is it do?
I will probably have more questions but if someone can show me a really good resource for this that would be great.