如何在 Visual Studio 2019 的 Datagrid 视图中连接来自 MySQL DataTable 的两列?

How to concatenate two columns from MySQL DataTable in the Datagrid View of Visual Studio 2019?

很抱歉,如果我的问题很简单,我是一名大学生,正在尝试探索 visual studio 中的数据库连接。我能够在数据网格视图中显示我的数据库 table 中的值,但我想知道如何连接两列并使它们在文本框中显示为一列。非常感谢任何能帮助我的人。我目前使用的是C#语言

您可以连接 MySql 中的列并使用别名绑定到网格。因此,在下面的示例中,您可以使用 Address.

绑定网格列
SELECT CustomerName, CONCAT(Address, " ", PostalCode, " ", City) AS Address
FROM Customers;