从带有长文本数据类型的sql列中获取全文

时间:2019-01-29 03:53:20

标签: mysql sql

具有长文本数据类型的

sql列A的文本包含'<'和'>'符号。当我在php中检索此列的结果时,这两个符号之间的文本以及符号本身都丢失了。

SQL列第1行的内容:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace MyWpfApplication
{
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void EndTimer_Click(object sender, RoutedEventArgs e)
        {
            EndTimer.IsEnabled = false;
        }

        private void cmbboxFinalstatus_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            EndTimer.IsEnabled = true;
        }
    }
}

PHP中的PDO_fetch_assoc结果:

<One><Two>Three

我已经尝试过该查询

Three

但最终没有结果

0 个答案:

没有答案