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,282 reads
The challenge is to find the Episode and Sequence based on interval.
2012-02-06
1,282 reads
The challenge is to create a query for a report that show expiring material
2012-01-23
928 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,831 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,400 reads
This challenge invites you to identify the longest sequence of alphabets from a string.
2011-11-28
989 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
615 reads
This challenge invites you to Generate kaprekar kernel or series from numbers.
2011-10-31
885 reads
This challenge invites you to identify the largest sequence of alphabets from a string.
2011-10-17
949 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
566 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers