mariadb/storage/ndb/test/sql/T1.sql
tomas@poseidon.ndb.mysql.com 35a520d2c2 merge error
2005-09-15 12:53:59 +02:00

9 lines
333 B
SQL

create database if not exists TEST_DB;
use TEST_DB;
drop table if exists T1;
create table T1 (KOL1 int unsigned not null,
KOL2 int unsigned not null,
KOL3 int unsigned not null,
KOL4 int unsigned not null,
KOL5 int unsigned not null,
primary key using hash(KOL1)) engine=ndb;