如何将datagridview表中的值与自定义结合起来

时间:2016-06-27 19:27:39

标签: mysql vb.net datagridview

this my datagridview2, from contact.db that have 2 columns : no_tlp (telephone number), and Contact name

and this is my datagridview1, from sms.db that have 3 columns : id_thread, address (phone no),body(sms text)

我想结合两个datagridview,以便他们可以显示; id_thread,联系人姓名和正文短信,然后抛出到datagridview3

但我在datagridview1&中遇到了电话号码的问题。 datagridview2具有不同的值,如+62和0(国家/地区代码),

我计划将电话号码的全部0更改为+62,并将两者中的phone_no联系人电话号码中的电话号码

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

更改你可以

的php号码
update contact
set no_tlp = concat('+62', right(no_tlp, length(no_tlp) -1))
where no_tlp like '0%';

一旦你更新了n_tlp,就可以从表中选择

 select contact.*, sms.*
 from contact 
 inner join sms on contact.n_tlp = sms.address