Viewing 15 posts - 1,426 through 1,440 (of 8,731 total)
hlsc1983 - Thursday, March 30, 2017 1:46 PMthanks. got it!!
is my table design alright?
Hard to say. As you might have noticed, designing...
March 30, 2017 at 2:00 pm
March 30, 2017 at 1:43 pm
select Students.student_rollno, marks, Subjects.subject_name ,Gradetype.Grade_idMarch 30, 2017 at 1:18 pm
March 30, 2017 at 12:46 pm
March 29, 2017 at 8:59 am
I'm glad that you were able to solve your problem.
March 28, 2017 at 11:31 am
March 28, 2017 at 9:24 am
Running the query ...
March 28, 2017 at 7:50 am
March 27, 2017 at 1:15 pm
The update seems to be working correctly with the sample data. The results don't match but that's only because you're adding the order number to the description.
March 27, 2017 at 12:07 pm
March 27, 2017 at 11:58 am
Here are my suggestions depending on the data type.DECLARE @NUMLIST TABLE
(
NM_ID INT IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED
,SKU BIGINT NOT NULL
);
March 27, 2017 at 9:57 am
select a.*,
avg(salary)...
March 27, 2017 at 9:44 am
BEGINMarch 27, 2017 at 9:35 am
This should be the equivalent to the original query using EXISTS instead of IN.SELECT
ap.AdminProduct_ID
,ap.RowVersionNumber
,ap.TherapyAdmin_ID
,ap.PackagedProduct_ID
,ap.AdminRecordMethod
,ap.ActionCode
March 27, 2017 at 9:32 am
Viewing 15 posts - 1,426 through 1,440 (of 8,731 total)