
02-17-03, 12:44
|
|
Registered User
|
|
Join Date: Jul 2002
Posts: 86
|
|
|
|
Quote:
Originally posted by chris72
In short...you have to extract via select list all your delete statement.
Like this:
SELECT 'DELETE FROM TAB WHERE KEY_TAB=' !!KEY_TAB!!';commit;'
FROM TAB
WHERE search-condition. In this way you build all your delete statement, but these statement are row per row (I have assumed that key is the unique key!).
Of course if you have to put a more complex delete you need more than one row to write it. That is because i've mentioned QMF ....
|
Thank you so much chris.
|
|