Viewing 15 posts - 586 through 600 (of 26,487 total)
First problem, your date parameters. They are char(80 and should be date, or datetime, or datetime2. You shouldn't be converting date values in your tables to character string for comparison...
December 13, 2018 at 12:05 am
December 12, 2018 at 10:20 am
I have been contacted for both contract and full time positions. Recruiters are typically driven by the clients needs and some clients want a try before they buy. It is...
December 12, 2018 at 10:01 am
I have a requirement to split a csv data...
December 12, 2018 at 9:52 am
It's usually...
December 12, 2018 at 9:50 am
December 12, 2018 at 9:40 am
First, ask yourself, could I solve the problem if all I have is what you have given us. Remember, we don't know what you are trying to accomplish, we don't...
December 12, 2018 at 9:36 am
December 11, 2018 at 11:42 am
Something like this perhaps:
if object_id('[dbo].[students]','U') is not null
drop table [dbo].[students];
create table [dbo].[students]
(
[Year] int
, [Course] varchar(50)
December 5, 2018 at 11:03 am
December 3, 2018 at 2:29 am
First, just providing the DDL for the view you are using isn't enough since the view is also querying other views. We would actually need the DDL for all the...
December 3, 2018 at 2:01 am
Heap tables also have their problems as well. Updates do not always go back where they started resulting in forward referencing points to get you to where the data actually...
November 30, 2018 at 2:45 pm
Viewing 15 posts - 586 through 600 (of 26,487 total)