Hi
I've a table like below
Product Code Start_SN End_SN
0001 100 1000
0002 1001 2000
I need to create a form which takes the Input as serial number and returns the Product Code which falls in that range.
Some how need to display the results of the following query based on user input "inp_SN"
select Product_code,start_SN, End_SN from table where inp_SN between Start_SN and end_SN
I'm new to forms and dont know how to do this?
Thanks in Advance
Sri