My database has the following table:
Category: {[Name: VarChar, TopCategory: VarChar]}
The table has the following contents:

Now I need to get all the names from all subcategories of the Computer Science category using with-clause in a recursive expression. This should be done using SQL, without PHP or another programming language.
All subcategories mean not only direct decoders, but also in this case C++ and Java How to do this?
What I have so far:
SELECT name FROM category WHERE (topcategory = 'Computer Science')
source share