Viewing 15 posts - 11,776 through 11,790 (of 26,486 total)
Let us know if this is what you are looking for in your query.
SELECT
lmeEmployeeID AS 'Employee',
lmeWebPassword AS 'Emp #',
--Is this person a...
May 22, 2012 at 12:57 pm
chalbert (5/22/2012)
Where should datediff go?
Two others gave you good answers, mine would have been "I don't know, this is your code. You tell us." 😉
May 22, 2012 at 12:41 pm
It is possible to structure the tables such that you eliminate the column storing the data as a comma separated list. You can then hide this structural change behind...
May 22, 2012 at 12:13 pm
I've done that on many occasions, especially while writing a query. Makes sure that I have the final ;.
May 22, 2012 at 12:07 pm
If people would just format their code they could figure out some of their own problems. Geez.
May 22, 2012 at 12:04 pm
chalbert (5/22/2012)
Select
dbo.b_ENROLLMENT.MEMBER_DOB_DATE,
dbo.b_ENROLLMENT.EFF_DATE,
dbo.b_ENROLLMENT.MED_ID,
dbo.b_ENROLLMENT.PLAN_CODE as aid,
dbo.p_DMAS_MEDICAL_TRANSITION.recip as recipno,
dbo.p_DMAS_MEDICAL_TRANSITION.SEX...
May 22, 2012 at 12:03 pm
You may want to read this article, http://www.sqlservercentral.com/articles/T-SQL/67898/.
May 22, 2012 at 11:43 am
Lynn Pettis (5/22/2012)
craigalaniz (5/22/2012)
Thanks so much for your help and your tips on submitting a question. I will be sure follow this format in the future.
I noticed that you...
May 22, 2012 at 11:39 am
Asynchronous mirroring is only available in the Enterprise Edition of SQL Server.
May 22, 2012 at 11:05 am
craigalaniz (5/22/2012)
Thanks so much for your help and your tips on submitting a question. I will be sure follow this format in the future.
I noticed that you included ft.FormatTime....
May 22, 2012 at 11:00 am
jcrawf02 (5/22/2012)
Lynn Pettis (5/22/2012)
May 22, 2012 at 10:46 am
SQLKnowItAll (5/22/2012)
Eugene Elutin (5/22/2012)
Jeff Moden (5/22/2012)
By posting data in a format that you need 2008 or above for, you're cutting out some pretty hefty SQL Ninjas who may not have...
May 22, 2012 at 10:45 am
You should probably look at restructuring this table into two or more tables (I haven't really looked at). If the application must have the data presented to it as...
May 22, 2012 at 10:42 am
isaac.wamalwa1983 (5/22/2012)
I have a scernario where i want to retrieve data from 5 tables:
OVPM - Doc Num,Doc Type,Doc Total,Journal Remarks,Cash A/C
VPM4 - Doc Num,Row Num,Account,Paid,Description,Acc Name, Pay type
OACT -...
May 22, 2012 at 10:35 am
At some point in time, yes you may need to end every statement with a ;. Until then, I believe the only statements that require that the previous statement...
May 22, 2012 at 10:28 am
Viewing 15 posts - 11,776 through 11,790 (of 26,486 total)