You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
drop table if exists test;
|
|
SET sql_mode = 'NO_ENGINE_SUBSTITUTION';
|
|
CREATE TABLE test (
|
|
gnr INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
url VARCHAR(80) DEFAULT '' NOT NULL,
|
|
shortdesc VARCHAR(200) DEFAULT '' NOT NULL,
|
|
longdesc text DEFAULT '' NOT NULL,
|
|
description VARCHAR(80) DEFAULT '' NOT NULL,
|
|
name VARCHAR(80) DEFAULT '' NOT NULL,
|
|
FULLTEXT(url,description,shortdesc,longdesc),
|
|
PRIMARY KEY(gnr)
|
|
);
|
|
Warnings:
|
|
Warning 1681 Integer display width is deprecated and will be removed in a future release.
|
|
Warning 1101 BLOB, TEXT, GEOMETRY or JSON column 'longdesc' can't have a default value
|
|
SET sql_mode = default;
|
|
insert into test (url,shortdesc,longdesc,description,name) VALUES
|
|
("http:/test.at", "kurz", "lang","desc", "name");
|
|
insert into test (url,shortdesc,longdesc,description,name) VALUES
|
|
("http:/test.at", "kurz", "","desc", "name");
|
|
update test set url='test', description='ddd', name='nam' where gnr=2;
|
|
update test set url='test', shortdesc='ggg', longdesc='mmm',
|
|
description='ddd', name='nam' where gnr=2;
|
|
check table test;
|
|
Table Op Msg_type Msg_text
|
|
test.test check status OK
|
|
drop table test;
|
|
|