| 12345678910111213 |
- -- Your SQL goes here
- CREATE TABLE book_words
- (
- id SERIAL PRIMARY KEY,
- book INTEGER NOT NULL,
- wordindex INTEGER NOT NULL,
- count INTEGER NOT NULL,
- created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
- );
- -- 索引:
- CREATE INDEX bookword_wordindex ON book_words (wordindex);
|