GSerg писал(а):SELECT DISTINCTROW * FROM Table1
Результат вставить в новую таблицу.
Как вариант.
Вот код
DoCmd.RunSQL ("CREATE TABLE alpha_table1")
DoCmd.RunSQL ("SELECT distinct * into alpha_table1 from alpha_table")
но тут происходит ошибка
run-time error "3163"
The field is too small to accept the amount of data you attemted to add. Try insert or pasting less data.
Че за ...?
а код
DoCmd.RunSQL ("CREATE TABLE alpha_table1")
DoCmd.RunSQL ("SELECT distinctrow * into alpha_table1 from alpha_table")
вообще вставляет все подряд.