posted 12 years ago
test
contains
id, name,address,insertiondate.
1 aaa xxxxxx 01-11-2005
2 bbb xxxxxx 01-11-2005
3 ccc xxxxxx 02-11-2005
4 ddd xxxxxx 05-11-2005
5 eee xxxxxx 11-11-2005
6 ggg xxxxxx 15-11-2005
7 rrr xxxxxx 21-11-2005
in my jsp programm i wanted to list the records when the user entering the date range value
eg: when the user enter the date range is
DateFrom: 01-11-2005 DateTO: 20-11-2005
here i wanted to display these below records
1 aaa xxxxxx 01-11-2005
2 bbb xxxxxx 01-11-2005
3 ccc xxxxxx 02-11-2005
4 ddd xxxxxx 05-11-2005
5 eee xxxxxx 11-11-2005
6 ggg xxxxxx 15-11-2005
how can i write SQL query of this above?
please help me..........
contains
id, name,address,insertiondate.
1 aaa xxxxxx 01-11-2005
2 bbb xxxxxx 01-11-2005
3 ccc xxxxxx 02-11-2005
4 ddd xxxxxx 05-11-2005
5 eee xxxxxx 11-11-2005
6 ggg xxxxxx 15-11-2005
7 rrr xxxxxx 21-11-2005
in my jsp programm i wanted to list the records when the user entering the date range value
eg: when the user enter the date range is
DateFrom: 01-11-2005 DateTO: 20-11-2005
here i wanted to display these below records
1 aaa xxxxxx 01-11-2005
2 bbb xxxxxx 01-11-2005
3 ccc xxxxxx 02-11-2005
4 ddd xxxxxx 05-11-2005
5 eee xxxxxx 11-11-2005
6 ggg xxxxxx 15-11-2005
how can i write SQL query of this above?
please help me..........
posted 12 years ago
Nujin,
Welcome to JavaRanch!
Using a prepared statement, you can do:
Welcome to JavaRanch!
Using a prepared statement, you can do:
[OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2

It is sorta covered in the JavaRanch Style Guide. |