DB2 SELECT 使用字母通配符且长度为 4 个字符
我需要对 Product_id 执行 SELECT,其中 Product_id 的长度为 4 个字符,最后一个字符可以是任何字母。我知道用于选择任何字母的通配符,但我不知道如何表示它必须是最后一个字符,并且我正在查找的 Product_ids 必须为 4 个字符长。
这有道理吗?
I need to do a SELECT for a product_id where the length the product_id is 4 characters long and the last character can be any letter. I know the wildcard for selecting any letters but I don't know how to denote that it has to be the last character and that the product_ids I'm looking for must be 4 characters long.
Does that make sense?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过“正确”和“标准”吗? (DB2中有一个LEFT)。如果没有,SUBSTR。
在 DB2 中你可以使用 LENGTH
所以希望
Have you tried RIGHT and standard LIKE? (There is a LEFT in DB2). If not, SUBSTR.
In DB2 you can use LENGTH
So hopefully