MySQL忽略html字符。为什么?

时间:2015-12-17 09:12:24

标签: mysql

拷贝:

enter image description here

粘贴而无: -

enter image description here

为什么?

1 个答案:

答案 0 :(得分:0)

我认为您在 标题 的末尾有一个空格,尝试使用 LIKE 而不是 =

 for(int[] a_row: a){
    for(int index=0; index < a_row.length; index++){
        a_row[index]+=1;
    }
}

for(int[] a_row: a){
    for(int i: a_row){
        System.out.print(i+"\t");
    }
    System.out.println("\n");
}

希望这有助于。