Advertisement
Guest User

mysql

a guest
Jun 19th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 4.41 KB | None | 0 0
  1. Enter password: ******
  2. Welcome to the MySQL monitor.  Commands end with ; or \g.
  3. Your MySQL connection id is 25
  4. Server version: 8.0.16 MySQL Community Server - GPL
  5.  
  6. Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
  7.  
  8. Oracle is a registered trademark of Oracle Corporation and/or its
  9. affiliates. Other names may be trademarks of their respective
  10. owners.
  11.  
  12. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  13.  
  14. mysql> show databases;
  15. +--------------------+
  16. | Database           |
  17. +--------------------+
  18. | information_schema |
  19. | mysql              |
  20. | openmrs            |
  21. | performance_schema |
  22. | sakila             |
  23. | sys                |
  24. | world              |
  25. +--------------------+
  26. 7 rows in set (0.33 sec)
  27.  
  28. mysql> use openmrs;
  29. Database changed
  30. mysql> show tables;
  31. +--------------------------------+
  32. | Tables_in_openmrs              |
  33. +--------------------------------+
  34. | allergy                        |
  35. | allergy_reaction               |
  36. | care_setting                   |
  37. | clob_datatype_storage          |
  38. | cohort                         |
  39. | cohort_member                  |
  40. | concept                        |
  41. | concept_answer                 |
  42. | concept_class                  |
  43. | concept_complex                |
  44. | concept_datatype               |
  45. | concept_description            |
  46. | concept_map_type               |
  47. | concept_name                   |
  48. | concept_name_tag               |
  49. | concept_name_tag_map           |
  50. | concept_numeric                |
  51. | concept_proposal               |
  52. | concept_proposal_tag_map       |
  53. | concept_reference_map          |
  54. | concept_reference_source       |
  55. | concept_reference_term         |
  56. | concept_reference_term_map     |
  57. | concept_set                    |
  58. | concept_state_conversion       |
  59. | concept_stop_word              |
  60. | drug                           |
  61. | drug_ingredient                |
  62. | drug_order                     |
  63. | drug_reference_map             |
  64. | encounter                      |
  65. | encounter_provider             |
  66. | encounter_role                 |
  67. | encounter_type                 |
  68. | field                          |
  69. | field_answer                   |
  70. | field_type                     |
  71. | form                           |
  72. | form_field                     |
  73. | form_resource                  |
  74. | global_property                |
  75. | hl7_in_archive                 |
  76. | hl7_in_error                   |
  77. | hl7_in_queue                   |
  78. | hl7_source                     |
  79. | liquibasechangelog             |
  80. | liquibasechangeloglock         |
  81. | location                       |
  82. | location_attribute             |
  83. | location_attribute_type        |
  84. | location_tag                   |
  85. | location_tag_map               |
  86. | note                           |
  87. | notification_alert             |
  88. | notification_alert_recipient   |
  89. | notification_template          |
  90. | obs                            |
  91. | order_frequency                |
  92. | order_type                     |
  93. | order_type_class_map           |
  94. | orders                         |
  95. | patient                        |
  96. | patient_identifier             |
  97. | patient_identifier_type        |
  98. | patient_program                |
  99. | patient_state                  |
  100. | person                         |
  101. | person_address                 |
  102. | person_attribute               |
  103. | person_attribute_type          |
  104. | person_merge_log               |
  105. | person_name                    |
  106. | privilege                      |
  107. | program                        |
  108. | program_workflow               |
  109. | program_workflow_state         |
  110. | provider                       |
  111. | provider_attribute             |
  112. | provider_attribute_type        |
  113. | relationship                   |
  114. | relationship_type              |
  115. | report_object                  |
  116. | report_schema_xml              |
  117. | role                           |
  118. | role_privilege                 |
  119. | role_role                      |
  120. | scheduler_task_config          |
  121. | scheduler_task_config_property |
  122. | serialized_object              |
  123. | test_order                     |
  124. | user_property                  |
  125. | user_role                      |
  126. | users                          |
  127. | visit                          |
  128. | visit_attribute                |
  129. | visit_attribute_type           |
  130. | visit_type                     |
  131. +--------------------------------+
  132. 97 rows in set (0.49 sec)
  133.  
  134. mysql>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement