I’m new to both Visual Studio and ASP.NET.
I have the following code in VS query builder:
SELECT [Column1], [Column2], Column3 FROM [Table] WHERE (Column3 = ?)
The problem is that this displays only results in which the WHERE clause is met for the whole field. I also need results where the parameter is just part of the field. Something similar is done in Access for a given value: *value*.
Please help.
Try: