Anyone can help me???????
Giving you the level_ID to get the Function_Desc.
The Function_Desc is from the tblDBFunctions. In the tblDBLevels, it has a field call Functions which combine the Function_ID's with "|"
SELECT Function_Desc
FROM tblDBFunctions
WHERE Function_ID = ANY
(SELECT Functions
FROM tblDBLevels
WHERE Level_ID = 1)
tblDBFunctions
Function_ID Function_Desc
1 aaaa
2 bbbb
3 vvvv
tblDBLevels
Level_ID Level_Name Functions
1 bbbb 1|2|3|
Any one can help me to get the Function_Desc????
Giving you the level_ID to get the Function_Desc.
The Function_Desc is from the tblDBFunctions. In the tblDBLevels, it has a field call Functions which combine the Function_ID's with "|"
SELECT Function_Desc
FROM tblDBFunctions
WHERE Function_ID = ANY
(SELECT Functions
FROM tblDBLevels
WHERE Level_ID = 1)
tblDBFunctions
Function_ID Function_Desc
1 aaaa
2 bbbb
3 vvvv
tblDBLevels
Level_ID Level_Name Functions
1 bbbb 1|2|3|
Any one can help me to get the Function_Desc????