Created
December 10, 2019 14:12
-
-
Save lighth7015/60a751d20be55ee89275e023dd1c1921 to your computer and use it in GitHub Desktop.
schema.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE IF NOT EXISTS "drugs_list" ( | |
"NDC" TEXT, | |
"DrugName" TEXT, | |
"GenericName" TEXT, | |
"Strength" INTEGER, | |
"StrengthUOM" TEXT, | |
"DoseForm" TEXT, | |
"MONY" TEXT, | |
"GPI" REAL, | |
"PackageSize" REAL, | |
"RxOTCInd" TEXT, | |
"ProductName" TEXT, | |
"TpaRestrictionCode" INTEGER, | |
"RouteOfAdministration" TEXT, | |
"MAINTDRUGCODE" TEXT | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment