SQL查询以显示表的内容

SQL查询以显示表的内容

本文介绍了SQL查询以显示表的内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,我有问题.
我已经在SQL中创建了一个名为Department
的表具有以下部门名称
人力资源
计算机科学
MBA

现在我想在Visual Studio 2010的组合框中显示这些部门名称
??

谁能帮我 ?? plz

Hello, I have a problem .
I have created a table in SQL called Department
which has followings departmentNames
HumanResource
ComputerScience
MBA

now i want to show these department names in combo box in visual studio 2010
??

Can any one help me ?? plz

推荐答案


SELECT
  departmentnames,
  departmentid
FROM
  Department



要使用的属性:
MSDN:ComboBox.DataSource属性 [ ^ ]
MSDN:ListControl.DisplayMember属性 [ ^ ]
MSDN:ListControl.ValueMember属性 [ ^ ]



Properties to use:
MSDN: ComboBox.DataSource Property[^]
MSDN: ListControl.DisplayMember Property [^]
MSDN: ListControl.ValueMember Property[^]



这篇关于SQL查询以显示表的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 02:04