如何计算 SQL Google SQL Workspace 中的字符数?

发布于 2025-01-19 08:33:21 字数 108 浏览 0 评论 0原文

通常,我用 LEN 编写代码来计算字符并且它可以工作,而当我尝试计算 ID、浮点列等字符时,它不起作用。 LEN 仅用于字符串,而不用于浮点数。

我应该使用哪个命令来计算 ID 中的字符数

Usually, I write a code with LEN to count characters and it works, and when I try to count characters like an ID, a float column it doesn't work. LEN is used just for strings, and not for float.

Which command I should use to count the number of characters from an ID

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2025-01-26 08:33:21

我建议这样的东西。

length(cast ID as string) as ID_LENGTH

如果这无济于事,请分享更多详细信息,理想情况下是您要计算长度的ID的示例。

I'd suggest something like this.

length(cast ID as string) as ID_LENGTH

Please share more details if this doesn't help, and ideally an example of an ID you're trying to count the length of.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文