TSQL Challenge 75 - Find the Episode and Sequence based on interval
The challenge is to find the Episode and Sequence based on interval.
2012-02-06
1,262 reads
The challenge is to find the Episode and Sequence based on interval.
2012-02-06
1,262 reads
The challenge is to create a query for a report that show expiring material
2012-01-23
911 reads
The challenge is to wrap the text by specified position.
2012-01-09
2,883 reads
This challenge invites you to solve a payroll challenge which requires to calculate the number of hours employee worked in a week.
2011-12-26
1,810 reads
Your task is to process the input table that contains several mangled words and try to 'un-mangle' them and validate them against a 'dictionary' table.
2011-12-12
1,386 reads
This challenge invites you to identify the longest sequence of alphabets from a string.
2011-11-28
967 reads
Your job is to write a TSQL query that returns the advertisements most relevant to each web page given in the source table.
2011-11-14
587 reads
This challenge invites you to Generate kaprekar kernel or series from numbers.
2011-10-31
878 reads
This challenge invites you to identify the largest sequence of alphabets from a string.
2011-10-17
920 reads
A website wants to display most relevant ads on each of its web pages based on the keywords associated with each page.
2011-10-03
559 reads
By Kevin3NF
Does skipping a DBA save money? Wait until your system grinds to a halt,...
By Brian Kelley
I admit that until I read the article, Who are you as a Leader?,...
Suppose you want to call a certain Microsoft Fabric REST API endpoint from Azure...
I am in the process of migrating from MySQL to SQL Server. I have...
I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...
Good morning to all. I am a novice when it comes to SQL so...
What is returned from this code in SQL Server 2022?
DECLARE @value INT = NULL , @value2 VARCHAR(20) = NULL; SELECT COALESCE (@value, @value2, 100.5) AS Result; GOSee possible answers