本文主要是介绍mysql字段乱序 information_schema,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
select COLUMN_NAME from information_schema.columns where table_name='collect_column_info' and table_schema = 'nz';
返回ASCII排列
导致
sqoop import \
--connect "jdbc:mysql://your_host/collect" \
--username your_username \
--password your_password \
--table collect_column_info \
也乱序
systemctl restart mysql 后返回ASCII排列
再次systemctl restart mysql 后返回collect_column_info表里的字段顺序排列
这篇关于mysql字段乱序 information_schema的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!