- Joined
- Mar 5, 2011
- Messages
- 1
- Reaction score
- 0
for example i entered the following in the database columns are (student_id,name,course):
student_id - 2011001, name - john, course - computer science
then
student_id - 2011002, name - jane, course - business management
how can i get jane's student_id without using the name and course columns?
and not using this method
sam = New SqlDataAdapter("Select student_id from studtable where student_id = " & 2011002 & "" con) of something like that...
student_id - 2011001, name - john, course - computer science
then
student_id - 2011002, name - jane, course - business management
how can i get jane's student_id without using the name and course columns?
and not using this method
sam = New SqlDataAdapter("Select student_id from studtable where student_id = " & 2011002 & "" con) of something like that...