0
votes
3answers
31 views
Can calculated column be used in another calculated column?
SELECT ExchangeRatePrice = CASE pp.Price
WHEN NULL THEN 0
ELSE (CASE WHEN c.CurrencyId = 1 THEN pp.Price
ELSE CONVERT(DECIMAL(9, 2), (pp.Price * c.ExchangeRate) …
0
votes
2answers
38 views
TSQL: Any benefits for explicitly specifying NVARCHAR in a string?
When you add pass a new job_type to sys.sp_cdc_add_job @job_type,
(which is of type nvarchar(20))
You can pass the argument as either
N'cleanup'
cleanup
Are there any reaso …
0
votes
4answers
46 views
Get data from table, Using Rows as Columns.
I have following data in my table.
I want to extract ProductId which has this criteria,
FieldValue = 1.0 and FieldValue = 'Y' and FieldValue = 'N'
This is not possible using …
1
vote
4answers
25 views
Updating row of table Using data from multiple columns of another table.
I have following table which I want to update using another table, given below.
I want to update Null values of above given table using following table on the basis of ProductId.
…
1
vote
5answers
52 views
T-SQL: Sorting by date, then grouping?
Let's say I have a database table that looks like this:
ID name salary start_date city region
----------- ---------- ----------- ----------- …
0
votes
4answers
46 views
Create a temporary table like a current table in SQL Server 2005/2008
How do you create a temporary table exactly like a current table in a stored procedure?
1
vote
7answers
72 views
IF/ELSE Stored Procedure
Hi,
Can anyone please point out what im doing wrong with this Stored Procedure please. I cant get it to compile and my software isnt giving any useful clues as to what is wrong wi …
0
votes
2answers
28 views
Selecting records during recursive stored procedure
I've got a content management system that contains a hierarchical structure of categories, with sub-categories subject to different ordering options at each level. Currently, that' …
0
votes
6answers
137 views
SQL Server CASE WHEN without using CASE WHEN
Is there a way to rewrite a Transact SQL statement that uses a CASE WHEN structure to do the same without using the CASE WHEN?
I'm using a product that has a built-in query design …
0
votes
3answers
85 views
Does the following query correct the problem?
hi
1) The following query obtains from each film category the cheapest
possible DVD with the highest rating:
SELECT FilmName, Rating, DVDPrice, Category
FROM Films AS FM1 INNE …
1
vote
1answer
39 views
Issues with building SQL strings
Why won't this piece of code work for me? It gives the error Must declare the scalar variable "@y".
DECLARE @y int
DECLARE @dbname VARCHAR(50)
SET @y = -1
SET @dbname = 'SomeDb.d …
3
votes
4answers
87 views
Add apostrophe to last name search
I created a proc that will return a list of applicants by lastname. I have a problem searching Applicants with last name that has apostrophe (Example O'Connor). Could you please he …
0
votes
4answers
52 views
Is there an equivalent in T-SQL to C#’s “throw;” to re-throw exceptions?
The title really is the question for this one: Is there an equivalent in T-SQL to C#'s "throw;" to re-throw exceptions?
In C# one can do this:
try
{
DoSomethingThatMightThrow …
0
votes
1answer
27 views
Linq to SQL With Left Outer Join and Group By With Sum - How To
Hi ! I'm trying to transform the SQL Query below into Linq to SQL
select Categorias.IdCategoria, Categorias.Nome, SUM(lancamentos.valor)
from lancamentos
left outer join Categor …
0
votes
4answers
33 views
TSQL CTE and a Graph of Sorts
With a table of the following structure and sample data:
TableActivity
-------------
Type VARCHAR(8)
Activity VARCHAR(8)
RelatedActivity VARCHAR(8)
…
