Search Results

0
votes
3answers
1k views

SQL changing a value to upper or lower case

How do you make a field in a sql select statement all upper or lower case? Example: select firstname from Person How do I make firstname always return upper case and likewis …
0
votes

Datatable vs Dataset

On major difference is that DataSets can hold multiple tables and you can define relationships between those tables. If you are only retuning a single result set though I would think a Dat …
0
votes

Need to speed up this query in SQL Server

You can search millions of records in a few seconds with good optimization. Though StingyJack is right in that without knowing the DDL, optimization of any query is tough. Things to do thou …