Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To update the clinical diagnosis ICD 10 concept code with the decimal value, please refer to the below steps.
Eg: Clinical diagnosis concept code values 'A00.0,  A00A00.1,  A02A02.21 etc.

  1. Download the attached ICD-10_code_update.zip'
  2. Connect to the MySQL server
  3. Copy the downloaded file on the server and extract it.
  4. Connect and use the MySQL database where you want to update the codes.
  5. Create the index on the 'value' field of the table 'catissue_permissible_value' using the below query.
Code Block
languagesql
titleCreate Index
CREATE INDEX idx_value ON catissue_permissible_value(value);

...