mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
80 lines
965 B
Text
80 lines
965 B
Text
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=NDB;
|
|
LOAD DATA INFILE '../std_data_ln/words.dat' INTO TABLE t1 ;
|
|
ERROR 23000: Can't write; duplicate key in table 't1'
|
|
DROP TABLE t1;
|
|
CREATE TABLE t1 (word CHAR(20) NOT NULL) ENGINE=NDB;
|
|
LOAD DATA INFILE '../std_data_ln/words.dat' INTO TABLE t1 ;
|
|
SELECT * FROM t1 ORDER BY word;
|
|
word
|
|
Aarhus
|
|
Aarhus
|
|
Aaron
|
|
Aaron
|
|
Ababa
|
|
Ababa
|
|
aback
|
|
aback
|
|
abaft
|
|
abaft
|
|
abandon
|
|
abandon
|
|
abandoned
|
|
abandoned
|
|
abandoning
|
|
abandoning
|
|
abandonment
|
|
abandonment
|
|
abandons
|
|
abandons
|
|
abase
|
|
abased
|
|
abasement
|
|
abasements
|
|
abases
|
|
abash
|
|
abashed
|
|
abashes
|
|
abashing
|
|
abasing
|
|
abate
|
|
abated
|
|
abatement
|
|
abatements
|
|
abater
|
|
abates
|
|
abating
|
|
Abba
|
|
abbe
|
|
abbey
|
|
abbeys
|
|
abbot
|
|
abbots
|
|
Abbott
|
|
abbreviate
|
|
abbreviated
|
|
abbreviates
|
|
abbreviating
|
|
abbreviation
|
|
abbreviations
|
|
Abby
|
|
abdomen
|
|
abdomens
|
|
abdominal
|
|
abduct
|
|
abducted
|
|
abduction
|
|
abductions
|
|
abductor
|
|
abductors
|
|
abducts
|
|
Abe
|
|
abed
|
|
Abel
|
|
Abelian
|
|
Abelson
|
|
Aberdeen
|
|
Abernathy
|
|
aberrant
|
|
aberration
|
|
DROP TABLE t1;
|