Search Results

4
votes

What is the easiest way using T-SQL / MS-SQL to append a string to existing table cells?

Graphain's answer is correct if the column is a CHAR(20), but is not true if it was a VARCHAR(20) and the spaces hadn't been explicitly entered. If you do try it on a CHAR field without the …
5
votes

SQL Server: Get data for only the past year

The following adds -1 years to the current date: SELECT ... From ... WHERE date > DATEADD(year,-1,GETDATE()) …
1
vote

Simulating MySql’s password() encryption using .NET or MS SQL

You can encrypt strings using MD5 or SHA1 in .Net, but the actual algorithm used by MySQL is probably different to these two methods. I suspect it is based on some kind of 'salt' based on the insta …
1
vote

connection string of ADO.Net of SQL Server

The following web site gives many different connection strings for you. The following should work I believe: http …
0
votes

How to populate combo box with values in MS Access 2007

Unfortunately this isn't possible. A combo box on a form can only have 1 source, it cannot have different sources for each record on a datasheet or multi-record form. …
1
vote

How to improve ‘Incorrect syntax near the keyword ‘select’.’

I don't believe you can have SET @var = SELECT ... Try the following instead: SELECT @sum = Sum(t.[VISITINGCOUNT]) from ... I would also like …
1
vote

How to update another table with the most recent data in SQL?

I'm not sure if this is the fasted code in the world, it obviously depends on how close the two servers are and how much data you have in each table. UPDATE Table1 SET f2 = T2. …
3
votes

Checking database for NULL boolean value

You want IS NULL I believe: SELECT * FROM table WHERE field IS NULL …
1
vote

How do I update tables in SQL so that related strings match?

The following is I believe the simplest: UPDATE TableB SET Path = TableA.Path FROM TableA WHERE TableB.Id = TableA.ID AND TableB.Path <> TableA.Path …
3
votes

Transact SQL CASE over a variable length input_expression

You can do case statements like the following: select case when substring(pan,1,2) = '37' then 'AMEX' when substring(pan,1,1) = '3' then 'Diners' when substring(pan,1,1) …