Viewing 15 posts - 6,571 through 6,585 (of 15,381 total)
Aside from the obvious MySql you have the word WHERE twice. You can't have two where clauses in a single query. You can have multiple condition. Remove the second WHERE...
October 8, 2013 at 11:57 am
Keith Tate (10/8/2013)
If everything is working fine without the NOLOCK hint why do you still want to use it? NOLOCK has the potential to get you "dirty" matches.
NOLOCK has far...
October 8, 2013 at 11:54 am
astrid 69000 (10/8/2013)
I did a few changes on the query, but i am still encountering a few problems.
it is not summing the clickcount, i do get a...
October 8, 2013 at 11:52 am
Please respond to the forum not a private message. That way others who may have the same issue can understand as well.
Think about ordering book titles by name.
Alphabet
Axe Murdering...
October 8, 2013 at 10:14 am
amolsingh9372 (10/8/2013)
IDNAME SALARY DEPT PREVIOUS_SAL
1 amol singh 2000...
October 8, 2013 at 9:51 am
astrid 69000 (10/8/2013)
on the columns the dates
on the rows the hours (from those dates)
and the sum of the clicks as a measure.
the same i gave has...
October 8, 2013 at 9:28 am
For anybody else coming along here is the sample data in a format that is consumable.
CREATE TABLE clicks (RecordDay datetime, ClickCount INT)
GO
INSERT INTO clicks (RecordDay, ClickCount)
select '2013-10-05 13:23:44', 2 union...
October 8, 2013 at 8:50 am
Excellent. Now what I don't understand is what do you want from this sample data?
October 8, 2013 at 8:48 am
prb (10/8/2013)
We have a script with insert statements in between BEGIN TRANSACTION and COMMIT.The data from those insert statements should populate few tables. When two of us run the script...
October 8, 2013 at 8:33 am
Your post is lacking any level of detail required for anybody to understand the problem, let alone the question. In order to help we will need a few things:
1. Sample...
October 8, 2013 at 8:30 am
I am not really sure what you are trying to do or what the question is.
October 8, 2013 at 7:19 am
cmcfarland 51322 (10/8/2013)
I'm trying to update a column based on a WHERE statement that uses a SELECT statement as the qualifier.
My goal is to find duplicate records in my...
October 8, 2013 at 7:17 am
SrcName (10/7/2013)
alter procedure w AS
exec('ALTER TABLE t ADD x char(1)')
exec('UPDATE t set x = 1')
But you can run only once. next time will be...
October 7, 2013 at 3:01 pm
babak3334000 (10/7/2013)
:w00t: Thank You So Much Master :w00t:Always be healthy " Sean Lange "
Glad you were able to figure it out. 😛
October 7, 2013 at 2:58 pm
Nevyn (10/7/2013)
If you don't trust that, or something...
October 7, 2013 at 2:57 pm
Viewing 15 posts - 6,571 through 6,585 (of 15,381 total)