Skip to content

Commit

Permalink
Change width of INPUTEVENTS_MV ORDERCOMPONENTTYPEDESCRIPTION to 200, …
Browse files Browse the repository at this point in the history
…and its comment on MySQL SQL.

MIMIC-III web page https://mimic.mit.edu/docs/iii/tables/inputevents_mv/ says its width is 200.
According to my calculation, the maximum length of its data was 100, so changed the comment on MySQL SQL file.
  • Loading branch information
KenjiOhtsuka authored Jul 28, 2023
1 parent 78f7b6e commit 54fc00f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mimic-iii/buildmimic/mysql/1-define.sql
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ CREATE TABLE INPUTEVENTS_MV ( -- rows=3618991
LINKORDERID MEDIUMINT UNSIGNED NOT NULL,
ORDERCATEGORYNAME VARCHAR(100) NOT NULL, -- max=24
SECONDARYORDERCATEGORYNAME VARCHAR(100), -- max=24
ORDERCOMPONENTTYPEDESCRIPTION VARCHAR(20) NOT NULL, -- max=57
ORDERCOMPONENTTYPEDESCRIPTION VARCHAR(200) NOT NULL, -- max=100
ORDERCATEGORYDESCRIPTION VARCHAR(50) NOT NULL, -- max=14
PATIENTWEIGHT DECIMAL(22, 10) NOT NULL,
TOTALAMOUNT DECIMAL(22, 10),
Expand Down

0 comments on commit 54fc00f

Please sign in to comment.