fulltext_update.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:
MySQL数据库
开发平台:
Visual C++
- drop table if exists test;
- 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)
- );
- 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;