查找特定字段超过“n”个的所有记录Oracle 中的字符数

发布于 2024-10-06 13:12:48 字数 256 浏览 3 评论 0原文

在 Oracle 中,我将更改表的结构,其中我将减少特定表中特定字段的大小。而且,在运行 ALTER 命令之前,我想知道字段包含字符的记录列表是否大于我要更改的大小。

例如,让我们将我的表命名为“Employee”。字段 Address_1 当前为 VARCHAR(60)。我打算将此字段修改为 VARCHAR(40)。

因此,我需要 Employee 表中所有记录的列表,其中字段 Address_1 具有 41 个或更多字符。

我怎样才能找到它?

In Oracle, I am about to ALTER the structure of the table where I would be reducing the size of a certain field in a particular table. And, before I run an ALTER command, I would want to know the list of Records where the field has characters is more than the size that I am going to ALTER it to.

For instance, let us call my table - Employee. The field, Address_1 which is currently VARCHAR(60). I am about to modify this field as VARCHAR(40).

So, I need a list of all the records in the Employee table where the field Address_1 has 41 or more characters.

How can I find that out?

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

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

发布评论

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

评论(1

江挽川 2024-10-13 13:12:48
select *
from employee
where length(address_1) > 40;
select *
from employee
where length(address_1) > 40;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文