gpt4 book ai didi

mysql - 如何选择没有值的列?

转载 作者:行者123 更新时间:2023-11-29 01:01:52 24 4
gpt4 key购买 nike

我有一个包含数千行和数百列的表格(不是我的设计)。我试图找出从未使用过的列,以便稍微简化表格。如何找到所有行中哪些列没有值?

最佳答案

像这样,从 *nix shell 运行应该会给你一个概览

for col in $(echo "explain  thetable" | mysql -s thedatabase | cut -f 1) ; do 
echo "select \"$col\",count(*) from thetable where $col is not null" |mysql -s thetable;
done

您会看到在每列之后打印的不为空的行数,如果有 0 行,则每行都有该列 = null。

关于mysql - 如何选择没有值的列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2610556/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com