gpt4 book ai didi

SQL Server 2008 : How to find trailing spaces

转载 作者:行者123 更新时间:2023-12-01 19:03:51 24 4
gpt4 key购买 nike

如何查找列中带有尾随空格的所有列值?对于前导空格,它只是

select col from table where substring(col,1,1) = ' ';

最佳答案

您可以使用LIKE查找尾随空格:

SELECT col FROM tbl WHERE col LIKE '% '

关于SQL Server 2008 : How to find trailing spaces,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2552407/

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