查看mysql 表結(jié)構(gòu)的一些sql
/*this can see the table information*/show table status from `fortioa`;
/*this can see all the fields detail information of a table including the character set*/
show full fields from `account`
/*change the table column`s character set to utf8*/
ALTER TABLE `purchaserequest` CHANGE `justification` `justification` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
posted on 2007-12-17 17:30 lqx 閱讀(1561) 評論(0) 編輯 收藏 所屬分類: database