Geoff Wass [dBVIPS]
2008-11-02 07:02:58 UTC
What format should I enter when deleting records of a table, using the
menuBar of dBasePlus V 2.5 when using the specified option to delete a
group of
records?
It shows ( )Current
( )Specified [ ] <---------
( )All
I am referring to the SPECIFIED option
Example: deleting rows 25 thru 52
I try several ways: 25-52, 25 52, 25 thru 52 at no avail.
Please help!
Thanks,
Ivan
Ivan,menuBar of dBasePlus V 2.5 when using the specified option to delete a
group of
records?
It shows ( )Current
( )Specified [ ] <---------
( )All
I am referring to the SPECIFIED option
Example: deleting rows 25 thru 52
I try several ways: 25-52, 25 52, 25 thru 52 at no avail.
Please help!
Thanks,
Ivan
The "specified" option is looking for a condition. If you have a field
called IDNum, you could say "IDNum > 24 and IDNum < 53". I don't use it
often, so I don't know how complex it can be. I normally use the Command
Window and:
use myTable
delete for IDNum > 24 and IDNum < 53 // dBASE command
delete where IDNum > 24 and IDNum < 53 // local SQL command
My habit is to use local SQL.
--
Geoff Wass [dBVIPS]
Montréal, Québec, Canada
.|.|.| dBASE info at http://geocities.com/geoff_wass |.|.|.
.|.|.| ---------------------------------------------------------- |.|.|.
.|.|.| IT Consultant http://Geoff_Wass.com |.|.|.
Geoff Wass [dBVIPS]
Montréal, Québec, Canada
.|.|.| dBASE info at http://geocities.com/geoff_wass |.|.|.
.|.|.| ---------------------------------------------------------- |.|.|.
.|.|.| IT Consultant http://Geoff_Wass.com |.|.|.