PostgreSQL 修改列报错:cannot be cast automatically to type integer

如果你直接使用可视化工具修改一个varchar字段为int类型的时候,可能会报错,

这里就需要自己去写一个语句去修改了

调整执行语句:ALTER TABLE table_name ALTER COLUMN column_name TYPE integer USING(column_name::integer);

这样的话,修改就可以正常的修改了。

时间: 2024-10-10 05:14:41

PostgreSQL 修改列报错:cannot be cast automatically to type integer的相关文章

Vboxmanage修改uuid报错的解决办法

我的环境: Virtualbox 4.3.10 r93012 操作系统:win7 问题:Virtualbox在使用拷贝的虚拟盘时会提示uuid冲突: Because a hard disk with uuid '' already exists. 按照网上的说法,运行VBoxManage修改uuid报错: D:\Program Files\Oracle\VirtualBox>VBoxManage  internalcommands sethduuid D:\vm\ rac1\model.vdi

招标行修改保存报错

拟定洽谈界面修改时候报错: 您正在尝试访问不再有效的页面.- 引用的页面可能来自上一会话.请选择 主页 以继续. You are trying to access a page that is no longer active.- The referring page may have come from a previous session. Please select Home to proceed. 原因:招标行界面物料说明中含有换行符 SELECT t.item_description

VC中编译报错:error C2011: 'fd_set' : 'struct' type redefinition

这是头文件包含顺序的问题,原因与解决办法见下面代码的注释. /* 包含下面这两个头文件时,必须把winsock2.h放在前面 否则编译报错,N多的重定义错误:例如 error C2011: 'fd_set' : 'struct' type redefinition */ #include <WinSock2.h> #include <Windows.h> int main(int argc, _TCHAR* argv[]) { Sleep(1); return 0; } 其实可以不

【原创】mybatis配置文件报错:The content of element type &quot;configuration&quot; must match &quot;(properties&gt;settings&gt;typeAliases&gt;typeHa...

最近使用mybatis,在mybatis的xml配置文件中总是会提示错误 The content of element type "configuration" must match "(properties>settings>typeAliases>typeHandlers>objectFactory>objectWrapperFactory>plugins>environments>mappers?)". 后来发现

spring cloud gateway网关启动报错:No qualifying bean of type &#39;org.springframework.web.reactive.DispatcherHandler&#39;

网关配置好后启动报错如下: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is java.lang.RuntimeException: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'servletEndpoint

flutter 编译报错 ../extended_network_image_provider.dart:63:41: Error: Type &#39;DecoderCallback&#39; not found

flutter 编译的时候报错 Compiler message:../../../.pub-cache/hosted/pub.dartlang.org/extended_image_library-0.1.9/lib/src/extended_network_image_provider.dart:63:41: Error: Type 'DecoderCallback' not found.      ExtendedNetworkImageProvider key, DecoderCallb

struts配置文件修改路径报错

今天在整合spring+struts时,把struts2的配置文件放到src/config/struts/struts.xml,启动项目老是报错!web下struts拦截器配置如下: <!-- 定义Struts2的核心Filter --> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsP

【mysql】全文索引match多列报错

表结构如下: CREATE TABLE `T` ( .... FULLTEXT KEY `title_fc` (`titleindex`), FULLTEXT KEY `shortname_fc` (`shortnameindex`) ) ENGINE=InnoDB AUTO_INCREMENT=50962041 DEFAULT CHARSET=utf8 创建了两个全文索引,但是在查找的时候,却出现如下这样的错误. mysql> SELECT count(1) as count FROM T a

[20141124]sql server密码过期,通过SSMS修改策略报错

背景: 新建了用户,没有取消掉强制密码策略 修改掉策略报错 错误: The CHECK_POLICY and CHECK_EXPIRATION options cannot be turned OFF when MUST_CHANGE is ON. 使用代码修改: USE Master    GO    ALTER LOGIN [somelogin] WITH PASSWORD = ‘samepassword’    GO    ALTER LOGIN [somelogin] WITH    C