SQL Server :: Add Two Sum Column To Show In One?
Oct 13, 2010add two sum column to show in one?
select SUM(a.SqFt + b.SqftDespatch)as Qt from dbo.Batch_reg a
add two sum column to show in one?
select SUM(a.SqFt + b.SqftDespatch)as Qt from dbo.Batch_reg a
I have database with one table and it has 4 rows.
1. I want to show a zero in front of all number. Actually i added but it doesn't show.
2. If i don't put any value in column is it possible to have minus for example instead of 0?
[Code]....
I post it like that because i can't see how to post pics directly.
P.S. The columns with numbers have checked "allow nulls".
I draw in paint so it's not so good but i think it's understandable.
I'm trying to combine two datetime columns into one and show just the dates in short date format. How do I change this? SQL Code:
[Code]....
PayNumber Time Period
Any one know any open source user control that is similar to gridtreeview. Basically, I want to show a multi column treeview that when expanded, user can edit certain column values. The columns can have a text box or dropdown etc.
View 8 RepliesI have gridview and want to show datalist in grid view view column on click of linkbutton show.
[Code]....
I want to copy data from a table[tblExcel][No.of columns:2] to another table[ev_event] which has 5 columns, 2 columns from the another table, 3 columns from user defined value
[code].....
I have a table converted from Access and the identity keys were lost. Now I need to make the id column the identity column, but it already has a lot of null values, how do I auto generate integer values for the null rows? The row ids are incremented, so if there is a way to auto increment the ids
View 7 RepliesI am creating dynamic view using two tables.one is emp_Tbl and 2nd table emp_salary which is created dynamically .creating view it gives error 'Create View or Function failed because no column name was specified for column 2.
my code is: create view [dbo].[Emp_Salary_pay] as select dbo.Emp_Tbl.Emp_Status, (select column_name + ', ' from information_schema.columns where table_name = 'Emp_salary' ) FROM dbo.Emp_Tbl INNER JOIN dbo.Emp_Salary ON dbo.Emp_Tbl.Emp_Id = dbo.Emp_Salary.Pay_Emp_Id
I have a GridView to show user detail like name,phone,and status(active,suspend).my problem is that in database the user status in from of integer like 1 for Active and 0 for suspend.now while i am showing data to user in GridView I want to show Active and suspend Text according to status in database 1 or 0. I am not getting where to check for this condition in Asp.Net I am new in asp. I have done it in php also.like
if($fetch->user_status==1)
echo "Active"
else
echo "suspend"
I have a SQL Server 2005 database which is queried by a web service which is called by an aspx page.
I inherited a messy and inefficient project, and I was working on cleaning up a GridView by making it dynamic and by having consistent field names in the database when I started getting an error of - Sys.WebForms.PageRequestManagerServerErrorException: Invalid column name: 'ASSIGNED_TO'
Assigned_to does not exist in the database, in the web service, or in the website solutions in any place. It was the name of one of the fields in one table, which I changed to USERID so that either of two datasets would fit into a Gridview (all other fields were the same). I then replaced all references of ASSIGNED_TO with USERID, which is when the issues began. The first of the two queries below causes the exception to be thrown, but the second one does not. I have tested both with the WCF Client and with a query within SQL Server to verify that they do work, so the issue has to be on the website side.
sSQL = "select distinct B.BADGE_NBR, a.REGId,B.CYC_RTE, b.USERID, a.MTRREAD,A.NEWMTRNUM, a.COMPTIME, B.FA_TYPE, CASE WHEN A.MTRCOMMENTS <> 'Null' THEN '*' END as Comment,a.MTRLAT,a.MTRLONG,a.WOFAID, b.ADDRESS, a.MTRREADFLAG, b.ROUT_SEQ from MobileDataReturn a,WORKORDERDIPATCHFILL b Where a.RegId = b.REGID and a.WOFAID = b.FA_ID and B.CYC_RTE " & route & "' and b.USERID " & worker & "' and B.BADGE_NBR " & badge & "' and a.MTRREADFLAG " & readflag & "' and b.FA_TYPE " & fatype & "' Order by a.COMPTIME desc"
sSQL = "select distinct BADGE_NBR, REGId,CYC_RTE, USERID,MTRREAD,NEWMTRNUM, COMPTIME, FA_TYPE, CASE WHEN MTRCOMMENTS <> 'Null' THEN '*' END as Comment,MTRLAT,MTRLONG,WOFAID, ADDRESS, MTRREADFLAG from MobileDataReturnArchive Where CYC_RTE " & route & "'and USERID " & worker & "'and BADGE_NBR " & badge & "' and MTRREADFLAG " & readflag & "'and FA_TYPE " & fatype & "' Order by COMPTIME desc"
The Gridview:
[Code]....
i set a value for decription column in my table of database.and now i want to show that for html.lablehow can i do it?
View 3 Replieshow I can make the first column in my GridView with Edit, Delete etc. buttons always shown on the screen, even when scrolled far to the right?
View 3 RepliesI have class Person, having two properties First Name and Last Name, if I set array of person as Data Source to GridView how can I show both First Name and Last Name in one column?/
View 2 Repliesi have 50 column and i want to sum one by one , the total will show in the textbox that mean total of each column will show in each textbox.
View 3 RepliesI have a gridview and in this grid one link button "view" is in each row
when we click on view button we want to show the another grid in the same column
I am binding a gridview(bounded field columns). see code below
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
CellPadding="4" CssClass="GridViewStyle" Width="700px" OnRowEditing="GridView1_RowEditing"> [code]....
there are three columns 1st is PL and 2nd is Finance . They bind some rows in gridview. both have float value; now i want that tha 3rd column
Total should show the value of (PL+Finance)
should I take the 3rd column as template field
my sp return resultset with different column names based on different parameters passed to sp and now i want to show that data in asp.net(c#) gridview so how can i achieve this
View 1 Repliesas all can see, i'm already able to create another gv that contains data selected by a checkbox from the first gv..
now is i want to show the image (from column tittled cover), also i want to sum the total of column 2 (ukuran) at the footer of second gv..
Heres the situation: I need update a column from my table (T1) from two other columns in a different table (T2).
My constraints are:
That I have to match the first 4 letters of a column in T2 to one column in T1 I have to identify that the first letter in a column in T1 corresponds to one letter in the middle of a string in a column in T2 For instance:
My Table (T1):
Order Type Combined
Place
0090 0001 YYXX 1YY
0091 1001 YYXX YYY
0092 1002 XXXX 2XX
Table 2 (T2):
Order Value
00900001YY XX
00911001YY XX
00921002XX XX
The Combined column in T1 is what i'm trying to complete. The T1.Place column contains the first character that I want to check for.
If it's a "1" then I want to make sure the 5th letter in T2.Order is a "0" If its a "Y" then I want to look for a "1001" If its a "2" then I want to make sure the 8th letter is a "2" in T2.Order
If all that matches then I was the last two letters in T2.Order + T2.Value to be combined and put into the appropiate spot in T1.Combined
Here's what I have:
[Code]....
I know it's a little complex, but i'm really stuck on it and any help would be greatly appreciated.
I am facing a problem here. I have a column where the value is equivalent to my identity column's value. For an example, I have a column A store is "ABC0001" and the 0001 is came from a column called Column B which identity on. when a new record inserted and Column B is next identity number and Column A value is "ABC" and add number from Column B.
View 4 RepliesI have made a AutoNumber Identity Column and iset Identity Specification property to "Yes" to keep the Identity Increment and Identity Seed values as default ones.
But when i use a datagriview and use a table adapter the column don´t appear on the datagridview.
Me.AUTONUMER2TableAdapter1.Fill(Me.Teste1DataSet3.AUTONUMER2)
So how to show to a AutoNumber Identity Column on a datagriview ?
I want to retrieve data from various column,which may some have blank value, so my problem is i want to retrieve only filled column(not any blank column) from multiple column.. I am doing this (given below) but it didn't return anything...
Column Name Value
Restaurant Restaurant
Spa Spa
Parking
Bar_Pub
Fitness_Center_Gym Fitness_Center_Gym
OleDbCommand cmd1 = new OleDbCommand("select nID Restaurant+''+Spa+''+Parking+''+Bar_Pub+''+Fitness_Center_Gym AS Facility from add_property where ncity='" + DropDownList1.SelectedItem.Text + "'", con);
DropDownList2.DataValueField = "nID";
DropDownList2.DataTextField = "Facility";
DropDownList2.DataBind();
con.Close();
--------------------------------------
I am trying to show/hide TemplateField of gridview but not getting it... here is ma sample aspx code
<asp:TemplateField HeaderText="ColumnA">
<ItemTemplate>
<asp:Label ID="lblTest" runat="server" Text=' <%# Eval("Test")>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
Now in server side i am trying to hide this column but failed !!
protected void gv_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header || e.Row.RowType == DataControlRowType.DataRow)
gv.Columns[2].HeaderStyle.CssClass = "hiddenClass"; // here i am setting display:None using css class
}
how to show/hide TemplateField on server side
i want show ten record from table in the gridview at 2 column in five row.
like this:
------------gridview-------------
record1 | record2
record3 | record4
record5 | record6
record7 | record8
record9 | record10
1 2 3 ...
-----------------------
How can i make a gridview always started ascending, depending on one of my columns? considering that is Populate it from database SqlDataSource
View 1 Replies