I think you should read more about relational databases.
There is no way to write a query to get all the articles on a specific category, because there's no relationship between the two tables.
You need to add an extra field to your articlesystem table (for example, catid) so you can have a relation between articlesystem and articlesystemcat. And now, with every article on the articlesystem table, you will have the correct category id for that article.
I hope you understand me