sql - How do I see what character set a MySQL database / table / column is? -


इस के लिए (डिफ़ॉल्ट) वर्णसेट क्या है:

  • MySQL डाटाबेस

  • MySQL तालिका

  • MySQL स्तंभ

< Div class = "post-text" itemprop = "text">

यहाँ मैं कैसे करूँगा -

स्कीमा के लिए:

  info_schema से डिफ़ॉल्ट का डिफ़ॉल्ट_चार्ट_सेट_नाम चुनें स्केमाटा WHERE स्कीमा_नाम = "स्कैनमेनम";  

टेबल्स के लिए:

  info_schema.`TABLES`, सूचना_सैमी। 'COLLAATION_CHARACTER_SET_APPLICABILITY` CCSA से CCSA.character_set_name का चयन करें CCSA.collation_name = T.table_collation और T.table_schema = "schemaname" और T.table_name = "tablename"; कॉलम के लिए  

:

  info_schema.COLUMNS` से चुनें चरित्र_सेट_नाम जहां तालिका_एसकेमा = "स्कैनमेनैम" और तालिका_नाम = "टैब्लेनाम" और column_name = "columnname" ;  

Comments

Popular posts from this blog

c++ - Linux and clipboard -

Visual Studio 2005: How to speed up builds when a VSMDI is open? -

booting ubuntu from usb using virtualbox -