查找特定字段超过“n”个的所有记录Oracle 中的字符数
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)