dougang1965 2015-09-14 13:20
浏览 23
已采纳

导入时连接列(MySQL / phpmyadmin)

I have a table with a basic structure... column1, column2, column3.

When I upload to this table on phpmyadmin (or any other environment for that matter), I would like to be able to add a fourth column which is a concatenation of the three columns being uploaded.

Is there any way of creating a column which is the equivalent of CONCAT(column1, column2, column3) as column4 so that each time I import to this table, column4 will be populated automatically?

I'm trying to avoid having to do this work before import or after, which I presume would require creating an additional table.

Any help would be appreciated.

Cheers, Ste

  • 写回答

1条回答 默认 最新

  • douye2488 2015-09-14 13:24
    关注

    I don't think you need to create a extra column in your database rather you can just do the same while displaying the data using a SELECT statement saying

    SELECT column1, column2, column3,
    CONCAT(column1, column2, column3) as column4
    FROM table1;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 一个服务器已经有一个系统了如果用usb再装一个系统,原来的系统会被覆盖掉吗
  • ¥15 使用esm_msa1_t12_100M_UR50S蛋白质语言模型进行零样本预测时,终端显示出了sequence handled的进度条,但是并不出结果就自动终止回到命令提示行了是怎么回事:
  • ¥15 前置放大电路与功率放大电路相连放大倍数出现问题
  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加
  • ¥15 用ns3仿真出5G核心网网元
  • ¥15 matlab答疑 关于海上风电的爬坡事件检测
  • ¥88 python部署量化回测异常问题