C
|
craigcjr 3/7/2004 |
Good question, I ran into the same problem when filtering data and heres what I did: |
S
|
seabird author 3/8/2004 |
Thanks for your input.
|
![]() |
Sergey Kornilov admin 3/8/2004 |
I won't recommend to add WHERE clause to the SQL statement. Here is the more reliable way to implement this. select * from Orders where LoadStatus='A'
|
A
|
awl 3/9/2004 |
Thanks for your input. Here is a simple approach that also worked for me:
|
S
|
seabird author 3/11/2004 |
Adam, |