我在检索列值时遇到问题,例如取决于其他列我尝试使用外部连接和嵌套选择来完成,但我想我无法在脑海中找到解决方案
Categories Table:
ID Name ParentID
--------------------------------
1 Software NULL
2 Domains NULL
3 Games NULL
4 Accounts NULL
5 Others NULL
6 Security Software 1
7 Operating Systems 1
8 Browsers 1
9 Developer Tools 1
10 .com Domains 2
11 .net Domains 2
12 .org Domains 2
13 Online Games 3
14 PC Games 3
15 PS Games 3
16 RapidShare Accounts 4
17 4shared Account 4
18 Web Templates 5
19 Flash Intros 5
20 Firewall 6
21 Antivirus 6
我想要做的是显示父类别名称而不是 parentID
像那样
ID Name ParentID
--------------------------------
1 Software NULL
2 Domains NULL
3 Games NULL
4 Accounts NULL
5 Others NULL
6 Security Software Software
7 Operating Systems Software
8 Browsers Software
9 Developer Tools Software
10 .com Domains Domains
11 .net Domains Domains
12 .org Domains Domains
13 Online Games Games
14 PC Games Games
15 PS Games Games
16 RapidShare Accounts Accounts
17 4shared Account Accounts
18 Web Templates Others
19 Flash Intros Others
20 Firewall Security Software
21 Antivirus Security Software