Viewing 15 posts - 226 through 240 (of 314 total)
nmah (9/26/2008)
select univ from tblxxx where univ in('stanford', 'College of William and Mary')
The above works fine.
But the...
September 26, 2008 at 7:07 am
giri_engg2001 (9/25/2008)
can anyone explain about DoEvents in detail with an example
This is related to VB so post your questions at VB forums like www.vbcity.com
September 25, 2008 at 8:21 am
Ahmad Osama (9/25/2008)
I have to compile some 30-40 stored procedures at the client end.
Currently I am do this by compiling each proc one by one in a query...
September 25, 2008 at 8:20 am
gururajan (9/24/2008)
xx
What does this mean?
September 24, 2008 at 8:47 am
Lynn Pettis (9/24/2008)
September 24, 2008 at 8:13 am
insert into test2
select * from test1 as t1
where not exists(select * from test2 where pk=t1.pk)
September 24, 2008 at 7:45 am
YYYYMMDD is ISO format which is fine
Make sure you use proper DATETIME datatype for your column
There is no need of convertion
September 24, 2008 at 7:03 am
Try using
(100.*
sum(case datepart(yy,t.orderdate) when 2008 then 1. else 0. end) /
NULLIF(sum(case datepart(yy,t.orderdate) when...
September 24, 2008 at 5:42 am
obarahmeh (9/24/2008)
September 24, 2008 at 5:31 am
obarahmeh (9/24/2008)
Thank you very much...Both of you correct.Thanks again
Well. You didnt answer to my question 😉
September 24, 2008 at 5:18 am
Chris Morris (9/24/2008)
SELECT REPLACE(CONVERT(VARCHAR(10), GETDATE(), 102), '.', '')
You dont need additional replace function
See my first reply 🙂
September 24, 2008 at 5:13 am
obarahmeh (9/24/2008)
Dear All,When you run the following command:
SELECT GETDATE() AS [CurrentDateTime]
The Result is : 2008-09-24 12:47:11.587
The question is: How can I get the following result from the above query:
20080924
Where do...
September 24, 2008 at 5:11 am
pri.amin (9/23/2008)
Thanks very much, worked well!! 🙂
You are welcome 🙂
September 24, 2008 at 2:04 am
September 24, 2008 at 1:43 am
Viewing 15 posts - 226 through 240 (of 314 total)