我有 SQL 表,我想显示其Name
列包含用户输入文本的所有行。怎么做?
我在 Visual Studio 2010 上使用 C#
Select * from tablename where DATALENGTH(Name) > 0
在您的 SQLCommand 对象中尝试此查询..
select * from Table where Name is not null
select * from Table where Name is not null and Name<>''
尝试使用此查询
sqlcommand cmd=new sqlcommand();
cmd="Select * from tablename where Name ='" + textboxid.text + "'";
在这里,tablename 是您创建的表的名称,textbox id 是您将在其中输入名称的文本框的 id。
试试这个,它使用查询参数:
SqlCommand myCommand = new SqlCommand(
string.Format("Select * from Table where Name = @NameInput"), SqlConnection);
SqlParameter param = new SqlParameter();
param.ParameterName = "@NameInput";
param.Value = textbox.Text;
param.SqlDbType = SqlDbType.Char;
myCommand.Parameters.Add(param);