hi,
I have a drop-down box whereever a name is to be entered so that a user can select a name from that.
I have to store the userid, but display the username.
While display, i am able to display the username, but in this particular form, where i have to display the username's of two columns: responsibility and chairperson,i am unable to write the query.How can it be written?
Below ive pasted the query which displays the username for column:responsi bility, i want to display the username for both the columns
rs = st.executeQuery ("select u.username,a.to befollowedupby from table2 a,table1 u WHERE a.responsibilit y=u.userid");
Below, are the tables
Table 1: userid,username
Table 2: responsibility, chairperson
--------------------------------------------------------------------------------
I have a drop-down box whereever a name is to be entered so that a user can select a name from that.
I have to store the userid, but display the username.
While display, i am able to display the username, but in this particular form, where i have to display the username's of two columns: responsibility and chairperson,i am unable to write the query.How can it be written?
Below ive pasted the query which displays the username for column:responsi bility, i want to display the username for both the columns
rs = st.executeQuery ("select u.username,a.to befollowedupby from table2 a,table1 u WHERE a.responsibilit y=u.userid");
Below, are the tables
Table 1: userid,username
Table 2: responsibility, chairperson
--------------------------------------------------------------------------------
Comment