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;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改