Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想只转储列名而不转储数据类型的命令是什么。还有可能我们可以在数据中搜索吗?就像获取具有@gmail.com 或单词'admin 的列数据。
--columns选项可用于枚举列
--columns
--where=constraint选项可用于搜索特定数据(类似于 SQL 的 where 子句)
--where=constraint
例如:--where="mail='abc@gmail.com'" mail 是列名,abc@gmail.com 是要搜索的关键字
--where="mail='abc@gmail.com'"
请参阅此处的使用部分