Home  >  Article  >  Backend Development  >  表字段复制问题

表字段复制问题

WBOY
WBOYOriginal
2016-06-23 14:02:581285browse

现在有表A 和表B

A结构

id  username genre pattern
1   mr.a     0       销售
2   mr.b     1       经理
3   mr.c     0       销售

B结构

id  model  field name setting css
1    12    area  地区   

现在想把A表字段复制成B表记录,

即如下结构:
id  model  field       name setting css
1    12    area        地区
2    15    username    用户名
3    15    genre       性别
4    15    pattern     职位

手册没翻出来,新手求教


回复讨论(解决方案)

$link = mysql_connect("localhost", "root", "pwd") or die("Could not connect: " . mysql_error());mysql_select_db("dbName", $link);$result = mysql_query("show fields from tableName") or die("Could not query:" . mysql_error());while($re = mysql_fetch_array($result)){   echo $re[0];   echo '<br />';}mysql_close($link);


获得了表中字段的信息,要怎么处理楼主自己写语句决定咯

php读取记录到数组,然后取数组键值 再写入数据库,这个已经知道了。现在想直接利用SQL写入。
还好在SQL板块找到答案了,所有 表字段都被mysql记录了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn