Viewing 15 posts - 1 through 15 (of 29 total)
Thank you for the input.
A term or semester is not really important or needed right now, since each grade will be associated also with a curricular unit/discipline and also i...
November 10, 2016 at 12:55 pm
it's a relationship between units (classes) and a plan study.
a plan study describes the course path through the 1st, 2nd, 3rd year, ...
and, you're right at the end, i...
June 17, 2016 at 1:37 am
the model is just a simplicafication, but
on table A you can have things like:
1, 'Bio'
2, 'Math'
on table B you can have things like:
1, 'Eng.1'
2, 'Eng.2'
on table AB you can...
June 16, 2016 at 8:25 am
I think the length column even be removed, still don't know exactly why why it helps being there.
If i edit the part WHERE n.length = 1)
for WHERE...
February 5, 2015 at 3:02 am
why you consider it odd ? i was reading a text on anti - pattern representations, that's from where i took the "idea" of this representation.
February 5, 2015 at 2:44 am
does it help this way ?
declare @employee table
(
emp_name varchar(25),
emp_id int,
dept_no int,
emp_sal int
)
insert @employee (emp_name, emp_id, dept_no, emp_sal)
select 'Ranit', 1001, 10, 10000
union
select 'Rahul', 1002, 20, 10500
union
select 'Rajat', 1003, 30, 10000
union
select 'Ravi',...
December 17, 2013 at 7:29 am
No!
So, what should i do when i see this kind of advices, should i just ignore it ?
November 11, 2013 at 4:21 am
Thank you, this is already defined in the table value functions 🙂
November 7, 2013 at 9:15 am
Perfect Mr. Scott.
Indeed, the same day of week has to be the same, mandatory.
PS: When you say "So, adding 6 mos gives a date of '2014-11-05', which becomes '2014-11-11', since...
November 7, 2013 at 3:23 am
i was searching for a solution for this new problem and found it ... it was about merging datetime intervals into a bigger one, it seemed simple when i started...
November 6, 2013 at 10:11 am
Thank you Sean, i was indeed browsing that section later, but didn't went deep to 2009 )
I got another doubt, i don't know if its best to say it it...
November 6, 2013 at 9:25 am
pretty neat function you did Dwain )), plenty of new sql strategy to learn and understand, thank you. By the way, you a small syntax error @ CREATE FUNCTION [dbo].[GenerateCalenda1]
.
November 6, 2013 at 1:45 am
Sean Lange (11/5/2013)
a20213 (11/5/2013)
November 5, 2013 at 2:19 pm
in this case, yes, but my goal is to make it calculate for any kind of date and delta future (1 month, 2 month, ... 1 and 1/2 years).
November 5, 2013 at 1:49 pm
i want May 6th because its the first tuesday of May, like today is the first tuesday of November, its the most "logical" day, just i have a feeling that...
November 5, 2013 at 11:49 am
Viewing 15 posts - 1 through 15 (of 29 total)