MySQL查詢字段最新,MySQL可以用中文字段名嗎?
mysql支持中文表名和字段名,前提是設(shè)置好支持中文的字符集,例如 gb2312例如:
--創(chuàng)建數(shù)據(jù)庫時指定字符集 gb2312createdatabasetest1DEFAULTCHARACTERSETgb2312;--轉(zhuǎn)到剛創(chuàng)建的數(shù)據(jù)庫usetest1;-- 創(chuàng)建中文數(shù)據(jù)表即中文字段createtable學生表(idintauto_incrementprimarykey,sidchar(10)uniquenotnull,姓名varchar(50)notnull,性別bit,生日date);