DataSource Controls :: Select Statement To Get Order By Date?

Apr 27, 2010

i get this data from history table for a paricular ConsignmentNo.

................

i want the sql statement. 1st condition is sql statement should be order by CurrentStatusDate.

.......................

View 13 Replies


Similar Messages:

DataSource Controls :: How To Format The Date To Uk Format With The Select Statement Through Objectdatasource

Jun 23, 2010

I have a objectdatasource control with a field of date and time and I was wanting to know how you format the date to uk format with the select statement through my objectdatasource. And what type of integer is bigint in SQL?

View 3 Replies

Forms Data Controls :: Date In Gridview - Use The ORDER BY Statement In General?

Feb 19, 2011

One of my table columns is for date and I understand how to use the ORDER BY statement in general. But how would I have the gridview sort with only the future items (relative to the current date) apear and leave out the past entries?

View 10 Replies

DataSource Controls :: Order In Which Inner Join Sql Statement Is Executed?

Jun 30, 2010

I was wondering in which order MSSQL executes a command. Say if I have this statement:

select top 1 * from table1 t1
inner join table2 t2 on t2.productid = t1.id
order by t1.buydate desc

what is done first:

- find if there's a matching record in t2 through the join

OR

- sort the results in t1 based on the buydate?

And when I have a large database with many records in both t1 and t2, what are possible performance issues I might hit?

View 5 Replies

Forms Data Controls :: Formatting A Date In A Select Statement?

Jun 15, 2010

The code below returns a dataset that I use in a Gridview. How can I modify my select statement to format the DateEntered as a Date in gridview with no time and TimeEntered as Time in gridview without date info?

[Code]....

View 3 Replies

Forms Data Controls :: Select Statement In Formview For Date Only?

Mar 3, 2011

I have a formview, selecting * from friends, where [date] = getdate()

The problem is the friends table date columns datatype is datetime, i cannot make it just date.

I only want to display data if the date is the actual date, i.e. between 00:00:01 and 23:59:59

How do i select only the date for both getdate and my date column?

SelectCommand="SELECT * FROM [friends] WHERE ([date] = getDate())">

View 2 Replies

DataSource Controls :: Select Rows In Given Order Of Ids?

Apr 22, 2010

My query was SELECT ID FROM TBLCARS WHERE (ID IN (1, 5, 3, 6))

this will usualy produces the result 1,3,5,6 order.But i want the result in the specefied order of ids.ie:1,5,3,6;ie;first get the row with id 1,then with id 5,then id 3,and last 6.

View 11 Replies

DataSource Controls :: How To Order Date Descending

Jan 12, 2010

I have a stored proc which returns months year in nice words, but having problem ordering them:

SELECT count(id) as counter, datename(MONTH, PublishDate) + ' ' + datename(YEAR, PublishDate) as date
from BLG_BlogPost where active=1 group by datename(MONTH, PublishDate) + ' ' + datename(YEAR, PublishDate)

And that returns:

April 2009 (8)
August 2009 (3)
February 2009 (2)

How can i order them?

View 3 Replies

DataSource Controls :: Select Top Record From Sql Statement

Mar 17, 2010

If I run the following SQL script:

[Code]....

View 3 Replies

DataSource Controls :: How To Select Statement For Some Scenario

Apr 24, 2010

I want the select statement for the above scenario.

View 2 Replies

DataSource Controls :: INSERT SELECT Statement?

Apr 30, 2010

How would you handle an INSERT that gets some values from another table using SELECT, where you wanted some values to come from the source table record and other values to come from a different parameter source like a session value? Is this possible?

View 3 Replies

DataSource Controls :: Executing The SP Across Select Statement?

Apr 17, 2010

I need to execute the stored proc accross the parameters resulted from select statement

I have created one stored procedure which require one parameters ( username ) ..

i need to execute this SP accross the Select Statement which lists all the username

somethibng like :

Set @username = (Select usename from my table)
EXEC dbo.Duplicate_Data @username

View 7 Replies

DataSource Controls :: Select Statement Across Three Tables?

Mar 17, 2010

[Code]....

Select statement across three tables

View 15 Replies

DataSource Controls :: Select Statement Excluding TOP 10?

Jul 6, 2010

I need to create a SELECT statement for a table that excluded the TOP 10 records.

"SELECT TOP 10 field1,field2,field3 FROM AppData ORDER BY field1 DESC" returns the first 10 records from the table but I need to retrieve only from the 21st record onwards.

I simply don't know how to do it because I'm not that strong with SQL. I searched the forum for some answers but can't find a solution that I can understand.

View 4 Replies

SQL Server :: Query - Select 3 Record Order By Date?

Dec 2, 2010

i want to select three records order by Date .This is my News table.

NewID NewTitle NewContent NewDate
1 Example ExampleContent 01.12.2010
2 Example2 ExampleContent2 02.12.2010
3 Example3 ExampleContent3 03.12.2010
4 Example4 ExampleContent4 04.12.2010

So,query selects example4,example3 and example2.

View 5 Replies

DataSource Controls :: Select Definite No. Of Rows After Ordering By Descending Order?

Mar 20, 2010

I am a bit confused how to say this but here goes.I have a sql server 2008 database tablewhere I want to select rows by descending order of a [column name] and then select first 10 rows from that output.I was trying something like select top 5 * from (select * from movie_data order by hits DESC);this does not work and I'm quite new to query-writing.

View 2 Replies

DataSource Controls :: Updating Field Using Select Statement?

Feb 24, 2010

I have a table "Table1" which has mani 3 fields ID: int,

Date1: datetime,

Date2: datetime

All fields are filled except Date2, so I want to copy the records in Date1 to Date2I tried this query, but it didn't work

[Code]....

View 3 Replies

DataSource Controls :: Select Statement By Multiple Dropdownlist

Feb 25, 2010

if I have three Dropdownlist A, B, C, how can I write a select statement to get data from sql server based on the dropdownlist selected.e.g. if user select dropdownlist A, select * from table where A = dropdownlist A but if user select dropdownlist A and C, then select statment is "select * from table where A = dropdownlist A and B = dropdownlist B or if selected A, B, C.......how can I settle so many choice.

View 2 Replies

DataSource Controls :: Return Values From Select Statement?

Feb 8, 2011

I have a select statement in a stored procedure and want to be able to retrieve the key column value (PRODUCTID)and return it as Output when Select statement is executed on input Parameter (NAME).

addition, return two further output values (COST,TOTAL).

note the grid control expects to receive all values at once! so i need to get out these values at the same instance of execution.

Select productID,COST,QUANTITY,NAME,TOTAL,DATE
FROM PRODUCTS
WHERE NAME=@NAME

View 2 Replies

DataSource Controls :: Count From Several Tables In One Select Statement

Mar 14, 2010

I am trying to count records belonging to a certain person in three different tables in a single select statement. The database looks like this:

Player
-PlayerId
-Name

Game
-GameId
-TournamentId
...

Goal
-GameId (FK->Game.GameId)
-PlayerId (FK->Player.PlayerId)
-Assist (FK->Player.PlayerId)

Card
-CardId
-GameId (FK->Game.GameId)
-PlayerId(FK->Player.PlayerId)

I want to select the number of goals, assist and cards a player has in a specific tournament. I tried with this query but then the goal and card column shows the sum of the number of rows matching the playerid in the Goal table and the Card table...For example if there is two matching rows in the goal table and three matching rows in the card table, I get 5 in both these columns in the resultset.

[Code]....

View 3 Replies

DataSource Controls :: SQL Select Statement - Values To Appear In Same Query

Feb 15, 2010

I am having difficulty selecting data from 2 tables that do no share a primary key value. For instance, I have an actual table, a forecast table, and a GLText table. I may have an actual value but not a forecast value but I need them to appear in the same Query (like the query results shown below). I can get all values to appear in each table but have been unsuccessful in getting all values from both tables.

View 5 Replies

DataSource Controls :: Display The Table Name In The Select Statement?

Feb 23, 2010

I need to display the table name in the select statement. how?

exact question:

we have common columns in two tables. we are displaying the records by using

select column_name from table_name_1 union select column_name from table_name_2

But the requirement is, we need to display the source table_name along with the data. consider a,c are present in table_1 and b,d are present in table_2. we need the output in the following way

eg: column_name table_name a table_1 b table_2 c table_1 d table_2

View 2 Replies

DataSource Controls :: Use A Stored Procedure In A Select Statement?

May 25, 2010

Just quick question, is it possible to Use a Stored Procedure which has a parameter in a select statement,, I mean something like the following

SELECT A, B

FROM Something

-- Something is the name of the Stored Procedure which take date parameter

View 2 Replies

DataSource Controls :: 2 Tables - Join And Order By / Select All Entries In GalleryAlbums Table?

Apr 6, 2010

I have two tables:

GalleryAlbums and GalleryPhotos.

I would like to Select all entries in the GalleryAlbums table, but Order them (DESC) by date values in a column (upload_date) on the GalleryPhotos table. Both tables have a column "album_id"

A little confused how I might write this statement.

View 15 Replies

DataSource Controls :: How To Add Condition In Select Statement For Datedifference Function

Mar 5, 2010

this is my select Statement.:-

Select (datediff(day,db_TargetDate,getdate())) from tbl_abc

in select statement only i wanted only those record in which datedifference is less than 5.

declaration of variable & then conditional checking is not wanted me because i wanted result is into select statement only & not using print statement.

View 11 Replies







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