Tagged Questions
The create-view tag has no wiki summary.
1
vote
1answer
36 views
Creation of view with case when statement
Please refer to my example below for clearer understanding of what i'm doing.
Example:
Create View v AS
Select T.*, S.Name, Case When T.TESTDATE = S.STUDYDATE
Then 'Yes' else 'No' END AS TakenTest
...
0
votes
1answer
7 views
When creating a view in MySQL, how to define a column as the result of calculations using other columns in the same view?
So let's say we have a table called Prices with columns Price1 and Price2, and I want to create a View called Totals with a column called PriceTotals that adds Price1 and Price2 on the table, and a ...
0
votes
2answers
63 views
how to make a MS SQL create view with unique ids?
Background:
i was first asked to do a website using mysql as the database, after that was done and sent, the clients asked me to convert it to mssql, and 3 tiers.
i did the classes and functions for ...
0
votes
3answers
31 views
How can I pull records from several different tables into a single view in SQL Server 2008 R2?
I'm attempting to create a sort of 'summary' view, where values should be pulled from several different tables ([Account],[Branch],[Customer],[Employee],[Transaction],[FlaggedTrans]).
Since I can't ...
0
votes
1answer
365 views
BLOB in MySQL view instead of the proper data
I created a MySQL view using UNION ALL from two tables so that I would get the same column names for the same data in those tables (i.e. tbl1.author2 AS translator ... tbl2.translator AS translator) ...
0
votes
3answers
520 views
Returning a resultset from a stored procedure with a table value function or view
I am using SQL Server 2000 and feeling stuck about how to do this:
I have a stored procedure that returns a single resultset which is bound to a gridview in a .Net web app.
Now I'd like to have a ...
0
votes
2answers
39 views
My VIEW in MySQL its not working
i play whit CREATE VIEW's in MySQL 5, now i have a troble, how can i make sure when i use this code.
SELECT
*
FROM
view_shop_invoicer_list
WHERE
accept_date >= '2009-10-16 00:00:00' ...