我正在尝试使用 php 将包含新行的 mysql 数据字段复制到另一个 mysql 表
我尝试作为
$sqlquery = "SELECT data from table1 where id = 100";
$mydata = --------------------- // here I got the data which contain new line.
$updatesqlquery = "UPDATE table2 set data=$mydata where id = 500";
// here the updated data is not same as the frist data.
任何人请指导我。
提前致谢。