Viewing 9 posts - 16 through 24 (of 24 total)
Lynn Pettis - Tuesday, September 18, 2018 9:10 AMAny triggers on the table that are fired by an update statement?
Hi Lynn
Thank for...
September 18, 2018 at 9:20 am
Hi Mark
Each person in the contact table (and therefore each entry in that table) is unique, so it might be something like this:
1 UNITED KINGDOM
2...
September 18, 2018 at 9:16 am
Hi Mark
Thanks for your help.
Yes, running that query only produces one line (as it should do). The mystery deepens!
Best wishes
Jon
September 18, 2018 at 9:06 am
Hi Andrew
Thanks for your help.
Running the following SQL shows just 1 record.
SELECT COUNT(serialnumber)
FROM Contact
WHERE Serialnumber='100045'
The column is a Primary Key...
September 18, 2018 at 9:04 am
Thank you both. I've got this to work now.
Best wishes
Jon
August 2, 2018 at 7:28 am
Thanks Mike.
I'm trying to concatenate them together so that I can compare them to a spreadsheet that is concatenated in the same way. I can then using the...
July 13, 2018 at 10:00 am
Thank you, yes, I want to make the columns FIRSTNAME, KEYNAME and DATEOFBIRTH into another column called FULLNAME. I want to do this only in the SELECT statement and not...
July 13, 2018 at 9:24 am
Hi Drew
No, unfortunately it produces three columns called SERIALNUMBER, DOB AND FULLNAME.
So, it doesn't include DOB or DATEOFBIRTH in the FULLNAME concatenation.
Many thanks
Jon
July 13, 2018 at 8:55 am
Hi Drew
Perfect thanks!
The only issue that I have now is trying to also add DOB into the CROSS APPLY( VALUES(FIRSTNAME + ' ' + KEYNAME ) )...
July 13, 2018 at 7:43 am
Viewing 9 posts - 16 through 24 (of 24 total)