从数据库字段中仅提取大写文本
我“继承”了一个数据库,其中表中的一个字段有小写和大写混合在一起,例如。
gateway 71, HOWARD BLVD, Chispa, NY
它们不容易用代码“拆分”,因为它们并不总是以这种形式出现。我需要的是一种只提取大写字母的方法。这可以用 SQLite 实现吗?
I "inherited" a db with a field in a table where there are lowercase and uppercase mixed together, eg.
gateway 71, HOWARD BLVD, Chispa, NY
They aren't easily "splittable" with code because they don't always come in this form. What I need is a way to extract only uppercase letters. Is this possible with SQLite?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下,使用您可能有的任何附加 WHERE 要求进行 SELECT 并创建游标来迭代在代码中进行大写检查的结果可能会更容易(并且可能更快)。
SQLite 的另一个选择是创建一个 自定义函数,这样你就可以执行以下操作:
This is a case where it may just be easier (and perhaps quicker) to SELECT with any additional WHERE requirements you may have and create a cursor to iterate over the results doing your uppercase checks in code.
Another option with SQLite would be to create a custom function, so you could do something like:
正如 NuSkooler 提到的,使用光标可能更容易、更快;如果您只需执行一次,这是一个特别有吸引力的选择。
这是一个简单的示例(使用 Python REPL 中的内置 SQLite):
As NuSkooler mentions, this is probably easier and faster to do using a cursor; an especially attractive option if you will only have to do this once.
Here's a quick example (using built-in SQLite from Python REPL):