Click here to Skip to main content
15,895,011 members
Home / Discussions / Database
   

Database

 
AnswerRe: Multiple selection from the same table Pin
Wendelius26-Mar-11 0:53
mentorWendelius26-Mar-11 0:53 
AnswerRe: Multiple selection from the same table Pin
Luc Pattyn26-Mar-11 7:27
sitebuilderLuc Pattyn26-Mar-11 7:27 
GeneralRe: Multiple selection from the same table Pin
Wendelius26-Mar-11 7:45
mentorWendelius26-Mar-11 7:45 
GeneralRe: Multiple selection from the same table Pin
Luc Pattyn26-Mar-11 8:05
sitebuilderLuc Pattyn26-Mar-11 8:05 
GeneralRe: Multiple selection from the same table Pin
Wendelius26-Mar-11 8:07
mentorWendelius26-Mar-11 8:07 
Questiondynamically change column name Pin
amit sahu2025-Mar-11 1:16
amit sahu2025-Mar-11 1:16 
AnswerRe: dynamically change column name Pin
Simon_Whale25-Mar-11 1:31
Simon_Whale25-Mar-11 1:31 
AnswerRe: dynamically change column name Pin
Eddy Vluggen25-Mar-11 1:32
professionalEddy Vluggen25-Mar-11 1:32 
Yup, you can change the name using an alias. Make sure that it doesn't contain spaces and stuff - Sql isn't the correct place to change the fieldname into a headername.

--edit; example added
SQL
DECLARE @Currency VARCHAR(50) -- doesn't need to support unicode
SET @Currency =' USD' -- add a space for readability

-- you can only concatenate strings, so cast the value to NVARCHAR
SELECT CAST(Currency AS VARCHAR) + @Currency AS [Currency] 
  FROM tbl_Emp

I are Troll Suspicious | :suss:

GeneralRe: dynamically change column name Pin
PIEBALDconsult25-Mar-11 3:03
mvePIEBALDconsult25-Mar-11 3:03 
GeneralRe: dynamically change column name Pin
Eddy Vluggen25-Mar-11 5:22
professionalEddy Vluggen25-Mar-11 5:22 
GeneralRe: dynamically change column name Pin
PIEBALDconsult25-Mar-11 16:00
mvePIEBALDconsult25-Mar-11 16:00 
GeneralRe: dynamically change column name Pin
Eddy Vluggen26-Mar-11 1:52
professionalEddy Vluggen26-Mar-11 1:52 
GeneralRe: dynamically change column name Pin
jschell25-Mar-11 8:29
jschell25-Mar-11 8:29 
GeneralRe: dynamically change column name Pin
PIEBALDconsult25-Mar-11 16:16
mvePIEBALDconsult25-Mar-11 16:16 
GeneralRe: dynamically change column name Pin
Eddy Vluggen26-Mar-11 2:04
professionalEddy Vluggen26-Mar-11 2:04 
GeneralRe: dynamically change column name Pin
jschell26-Mar-11 6:08
jschell26-Mar-11 6:08 
GeneralRe: dynamically change column name Pin
Wendelius26-Mar-11 3:38
mentorWendelius26-Mar-11 3:38 
QuestionHow to calculate average of qty sold the last 6 months or less Pin
Joe Smith IX23-Mar-11 23:50
Joe Smith IX23-Mar-11 23:50 
AnswerRe: How to calculate average of qty sold the last 6 months or less [modified] Pin
Chris Meech24-Mar-11 2:52
Chris Meech24-Mar-11 2:52 
GeneralRe: How to calculate average of qty sold the last 6 months or less Pin
Joe Smith IX24-Mar-11 18:10
Joe Smith IX24-Mar-11 18:10 
GeneralRe: How to calculate average of qty sold the last 6 months or less Pin
Klaus-Werner Konrad25-Mar-11 7:11
Klaus-Werner Konrad25-Mar-11 7:11 
GeneralRe: How to calculate average of qty sold the last 6 months or less Pin
Chris Meech25-Mar-11 7:20
Chris Meech25-Mar-11 7:20 
GeneralRe: How to calculate average of qty sold the last 6 months or less Pin
Klaus-Werner Konrad25-Mar-11 14:50
Klaus-Werner Konrad25-Mar-11 14:50 
AnswerRe: How to calculate average of qty sold the last 6 months or less Pin
Mycroft Holmes24-Mar-11 12:59
professionalMycroft Holmes24-Mar-11 12:59 
GeneralRe: How to calculate average of qty sold the last 6 months or less Pin
Joe Smith IX24-Mar-11 18:10
Joe Smith IX24-Mar-11 18:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.