前言: 我们有时候需要使用多条select语句来获取查询结果,这时候就可以使用union这个关键字来实现组合查询,详细介绍如下: 1、union union这个组合查询,会自动将重复的行去掉 使用union来组合两条select语句 string sql = string.Empty;if (radioButton_UNION.Checked){sql = $"select student_name from student_info where student_age >30 union select stude