angiras
11-18-2003, 12:24 PM
I have the following table (access 2000) for categories >>>
id_category
level
id_categorySup
categoryName
now I want to get a list (select) of level 2 >>>
SELECT id_category AS id, id_categorySup & " : " & categoryName AS name
FROM category
WHERE level=2
then I get something like >>>
<option value="24">4 : Office</option>
but in my Table : 4 = Software , how can I do a request to get >>>
<option value="24">Software : Office</option>
?
thank you
id_category
level
id_categorySup
categoryName
now I want to get a list (select) of level 2 >>>
SELECT id_category AS id, id_categorySup & " : " & categoryName AS name
FROM category
WHERE level=2
then I get something like >>>
<option value="24">4 : Office</option>
but in my Table : 4 = Software , how can I do a request to get >>>
<option value="24">Software : Office</option>
?
thank you