Hi
ist there a way to merge two tables in MySQL virtually so I could query and insert data? (which is basicly splitted)
exp.
table
- id
- active
- foo
table_meta
- table_id
- language
- text
what I like to do is using something like this instead of sql-join
INSERT INTO table_join SET active = 1, language = 'en';
regards jim