kz.greetgo.msoffice.xlsx.parse.create_table_CELLS.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.msoffice Show documentation
Show all versions of greetgo.msoffice Show documentation
greetgo library to generate or parse MS Office files
CREATE TABLE CELLS
(
SHEET_ID BIGINT NOT NULL,
N_ROW BIGINT NOT NULL,
N_COL BIGINT NOT NULL,
T VARCHAR(10),
S VARCHAR(10),
V VARCHAR(100),
PRIMARY KEY (SHEET_ID, N_ROW, N_COL)
)