SQL Server :: Query - How To Make Total Sum Of The Result

Nov 3, 2010

this script work with join and sum

and works good,but i want to make total sum of the result of this query for all rows of sum column

[Code]....

View 4 Replies


Similar Messages:

DataSource Controls :: SQl Query - Generate Another  Computed Column That Will Contail The Result Of GrandTotal/Total?

Jun 30, 2010

How do i generate another computed column that will contail the result of GrandTotal/Total,


where GrandTotal is another value comes from computed column and the Total would be the sum of the Total within SchedularID.

And thats what i have done so far: [Code]....

View 3 Replies

How To Make A Result In A Query(with Var.)

Oct 31, 2010

i need to make 2 funtions on an ASP.NET c# page working with an SQL server (using Visual Web Developer 2010 Express) the 1st one is a simple serach and i've done the 2nd thing is an update , the sp is like:(it works in SQL)

UPDATE [lens] SET [qty] = @b+@c WHERE [id] = @a

@a is the id which user input in the textbox1

@b is an number user input in the textbox2

now @c should be the result of an query "select [qty] from [lens] where [id] = @a"

so ,the new value of [qty] will be the "old valus"+"valus in textbox2"

View 2 Replies

SQL Server :: Query Slow In Loading / Trying To Display Query Result?

Feb 1, 2011

I am trying to display this query result in an aspx page.

It is very slow in loading. Here is the query. The inner query inside the outer quesry is the problem.(Please see the underlined part in the query) - (If I remove that part it is very fast.)

select

top 500

--This column is the issue
,Governing_Class=( case when exists (select top 1 tqc.class_code from
t_quote_class tqc
inner join t_quote_class_premium tqcm on tqc.class_code =tqcm.
class_code
where tqc.appid=pi.appid and tqc.class_code not in('8742' ,'8810','7380')
order by tqcm.premium_amt desc
)
then ( select top 1 tqc.class_code from
t_quote_class tqc
inner join t_quote_class_premium tqcm on tqc.class_code =tqcm.
class_code
where tqc.appid=pi.
appid
order by tqcm.premium_amt desc
)
......... From tables

View 7 Replies

SQL Server :: How To Copy Result Query To Another Query

Nov 4, 2010

i have tow query in one stored procedure

first query and the second one every of them return only value

i want to copy the result of tow values in a new row in new table

as i want to check on this tow values in ado.net

i want to get only this tow values as a row not first and secon query

only a row has result of first and second query results

[Code]....

View 3 Replies

SQL Server :: How To Store Query Result In Variable

Oct 7, 2010

i am wishing to store the query result in any variable, have look at below code.

[Code]....

I have marked the code with bold, where I am getting error.

how do I store query result in any variable.

View 8 Replies

SQL Server :: Export A Query Result To .txt File ?

Feb 7, 2011

i need to export a query result to a .txt file , how can i do it ?

View 4 Replies

Forms Data Controls :: Displaying Correct Result Inside DropDownList From LINQ Query Result

Jul 1, 2010

I have this ListView that has a Drop Down List.Everything works fine (I think/hope) except that the drop down list are not showing its result correctly.This is the code.

Front-End
[Code]....

The code behind consist of the page_load and the ItemDataBound
[Code]....

View 3 Replies

Linq To XML - Getting Correct Query Result, But It's Buried Deep In The Result Var?

Mar 1, 2011

I'm having a problem with my Linq to XML query. I'm getting the result data I want, but it's nested so deep that there must be a better way.Here is my XML:

[Code]....

I'm trying to get a list (simple string[]) of all Item IDs where Category Names contains "Other".Here is my Linq:

[Code]....

[Code]....

Here is a snapshot of my result from Visual Studio:The results I want are there ("item100", "item400", "item500"), but buried so deeply in the results var.

How can I get the query to return a simple

string[] = { "item100", "item400", "item500" }

View 4 Replies

SQL Server :: Query - Get A Result With The Latest 10 Offers For All Products With One Offer Per Product

Aug 8, 2010

I have a sql table (ProductsOffers) in which I store all the offers posted for each Product it consists of columns

offerId int
ProductId int
ProductSpec nvarchar 50
OfferDate DateTime
OfferId + ProductId = My primary Key

everyday there will be many offers for each model and some of them may have no offer in this day. Now Suuppose that I have 10 Products with 15 offers. I want a sql sentence or function that let me select the latest offer for each product. When I select by date it returns the last inserted offer and they may have repeated products and also there will be some products not appear in the result. how can I get a result with the latest 10 Offers for all my products with one offer per product

View 8 Replies

Crystal Reports :: Displaying Integers For Running Total Result?

Mar 5, 2011

I've got a report w/ grouping and a running total field. The running total is the sum of 'n' integer values, however, when I display the running total field it displays a floating point value. So for example, two rows have 10 and 15, but the the running total displays 25.00. Is there a way to display this result as an integer? I tried using a formula field w/ the 'Int', 'Truncate', and 'Round' functions, but nothing seems to work.

View 2 Replies

SQL Server :: How To Make Sql Query Run Faster

Jul 20, 2010

How to make sql query run faster . Below is my query:

SELECT [FieldValue2] = case isdate(FieldValue2) When '1' then
case isdate(FieldValue4) When '0' then
dbo.GetCountagingDay(FieldValue2, getdate(), '') -1
else
'0'
end
else
'0'
end
FROM test

View 6 Replies

SQL Server :: How To Make Join Query

Dec 22, 2010

I have a problem with a sql server query, what am I missing - why doesn't it work? This is what I want to retrieve:

tblMeetings: ID, subject, description

tblOccasion: dateStart, dateStop

WHERE Meetings.status = 'bokad'

AND Meeting.ID = Occasion.meetingID

Below is two alternatives for the same result, with different error messages:

[Code]....

[dbo].[Meetings](

View 3 Replies

Forms Data Controls :: The Total Amount Show The Correct Calculation Result, But The String Format Dont Work?

Feb 27, 2010

my query is like this " select product_id, product_price, purchase_amout from purcases"

and on my formview i tried to add a "total purchase"

i tried using <asp:Label ID="total_purchase" runat="server" Text='<%# string.format(cint(eval("product_price")*eval("purchase_amout")),"{ Rp 0:###,###,###,###,###}")%>'>

the total amount show the correct calculation result, but the string format dont work.... so it display 20000 instead of Rp 20,000

btw. "Rp" is the currency symbol in my country... i dont use {0:c} coz the server user US currency

View 4 Replies

ADO.NET :: Ado And Access - Sum Query SELECT SUM() As Total

Dec 31, 2010

Need to do a summary report of two items, sales and commissions by sales person, by date range. There are only a handful of salespeople. I messed around with SELECT SUM() for a few hours last night. It works easily, up until you need to do a few table joins, to say join on employee id to pull in names. Then it starts getting pretty convoluted, fairly quickly. Question is, is there maybe an easier way of doing this in asp.net than through the sql? It is Access, so I don't think LINQ will work, right? Just wondering if there isn't a quick, easy way of doing this that I don't know about.

View 2 Replies

How To Get The Result Value From SQL Query

Feb 9, 2011

I use the follwoing code to get a value from the SQL query. But now i would like to use some sql function like Sum() count() ... and i would like to get the result of that.
vb Code:
Dim constg As New SqlConnection
constg.ConnectionString = "Data Source=m......."
constg.Open()
Dim payrollquery As String '= ("SELECT * FROM xxxxx.nnnnn WHERE ID IN(" & ID & " ) AND sent = 'U' ")
Dim cmd3 As New SqlCommand(sqlstr, constg)
Dim reader As SqlDataReader = cmd3.ExecuteReader

View 3 Replies

C# - SemWeb - Get Query Result In Xml?

Jun 30, 2010

I'm trying to use SemWeb library to make my SPARQL queries on an remote SPARQL endpoint.

this is what i'm using fort testing, since this is an example that came with Semweb

SparqlHttpSource source = new SparqlHttpSource("my_endpoint");

source.RunSparqlQuery("SELECT * WHERE {?entity dcterms:title 'someentity' }", new SparqlXmlQuerySink(Console.Out));

Now, what happens is that my query isn't returning xml, but javascript, how do i know that?
using this simpler example:

SparqlHttpSource source = new SparqlHttpSource("my_endpoint");

source.RunSparqlQuery("SELECT * WHERE {?entity dcterms:title 'someentity' }", Console.Out);

So my question is, how do i tell semweb to get my results in xml format?

View 2 Replies

How To Export Sql Query Result To Excel

Jan 4, 2010

I want to export the sql query result to excel workbook. Diffrent query results in diffrent work sheets but in a same excel sheet.

View 3 Replies

Merging Rows From Sql Query Result?

Sep 15, 2010

What would it be the simplest way to merge a result like this from a sql query to be displayed in an asp.net gridview?

NULL Tarde Fer W. Lunes
MaƱana NULL Fer W. Lunes

I need the result to look like this

MaƱana Tarde Fer W. Lunes

View 2 Replies

Exporting Sql Query Result To Excel

Feb 22, 2010

In my asp.net application i wanted to export the SQL query result to Excel and that excel should be avaliable to the user as a download.

View 3 Replies

ADO.NET :: How To Use Order By On The Result Of A LinQ To SQL Query

Dec 8, 2010

How can I use Order by on the result of a LinQ to SQL query ?

I have the following Situation:

Dim ret As New Object

ret = From status In tableStatus _
Select status.STATUS_ID, _
Text = Function_GetText(status.TEXT_ID)

Now I have to order this result on the field Text, has anyone an idea? (I can't use in my case Orde by Function_GetText(status.TEXT_ID))

View 3 Replies

ADO.NET :: How To Randomize A LINQ Query Result

Dec 5, 2010

How to randomize a LINQ query result?

Below takes 4 of the records but it won't randomize in every request. [:(]

Dim products = (From p In Northwind _
Order By Guid.NewGuid _
Select New With { _
.Name = p.Name, _
})
Return products.Take(4).ToList()

View 7 Replies

ADO.NET :: Get A Single Value Result From Linq Query

Aug 18, 2010

i want take a single value result from linq query

if i have :[Code]....

the variable result does not return nothing, only tostring() and similar how can i get a single result from linq query and use it in my ID variable?

View 1 Replies

Way To Get All User Result From SQL Query Using For Loop?

Nov 5, 2011

I would like to get the list of users (from db) who meets my SQL select statement, and send email for each of them.my current looks like this

Code:

Dim constguser As New SqlConnection
constguser.ConnectionString = ConfigurationManager.ConnectionStrings("xxxxxxxx").ToString
Dim email1D, email2D, userNickName, userName, rc As String
constguser.Open()

[code]....

If i run this code its only going to get the name and email of the first result found. I was wondering if there is a faster way to get all user result from the sql query, myb using a for loop?

View 7 Replies

ADO.NET :: How To Query A Data Table To Get A Customized Result

Aug 18, 2010

I am having a datatable in which the data is as follows

No Name Text
1 a abc
1 a xyz
1 a asd
2 b aaa
2 b bbb

I want to querry this data table to get the result as

No Name res1 res2 res3
1 a abc xyz asd
2 b aaa bbb

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved