472,959 Members | 1,868 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,959 software developers and data experts.

Create a specific view in SQL server

4
In the last few days I have developed a small database within SQL Server, with the aim of improving my knowledge.

For now, I need to create a view (for the analytics team), to which the following data should be reported in the view.

➤ Order ID
➤ Date and time of order creation
➤ Customer's first and last name
➤ Delivery date
➤ Item code and description
➤ Quantity demanded
➤ Amount to be paid
➤ Payment Type Description
➤ Total order weight
➤ Total order volume

For the moment I am stuck in this part, and therefore, I would need the query to compose this view by reporting the above data.
---

The last question I ask you is:
To create the view I would first have to create a relationship between the items, for example: Between items in the item table and items in the order table?

Expand|Select|Wrap|Line Numbers
  1. -- The query I'm using to create the view, but I think something is missing or not correct.
  2.  
  3. USE [TestExec]
  4. GO
  5.  
  6. CREATE VIEW OrdersToShip AS
  7. SELECT O.[ID_Orders]
  8. ,O.[DataInsert]
  9. ,C.[Name]
  10. ,C.[Surname]
  11. ,O.[Shipping]
  12. ,A.[Article]
  13. ,A.[Description] 
  14. ,O.[Quantity]
  15. ,O.[Quantity] * A.[Unit_Cost]
  16. ,TP.[Description]
  17. ,O.[Quantity] * 
  18. ,O.[Quantity] * A.[Net_Weight_Kg]
  19.  
  20. FROM ORDERS O
  21. INNER JOIN CUSTOMERS C ON O.Client_ID = C.Client_ID
  22. INNER JOIN ARTICLES A ON O.ARTICLE = A.ARTICLE
  23. INNER JOIN TYPEPAYMENT TP ON O.PAYMENT_ID = TP.ID_PAYMENT
  24.  
  25. GO
  26.  
  27. -- Articles table
  28.  
  29. CREATE TABLE [DW]. [Articles] (
  30. [Article] [nvarchar] (30) NOT NULL,
  31. [Description] [nvarchar] (150) NOT NULL,
  32. [Unit_di_misura] [nvarchar] (20) NOT NULL,
  33. [Pieces_per_Box] [nvarchar] (20) NOT NULL,
  34. [Box_for_Pallet] [int] NOT NULL,
  35. [Unit_Cost] [float] NOT NULL,
  36. [Net_Weight_Kg] [float] NOT NULL,
  37. [Height_cm] [int] NOT NULL,
  38. [Length_cm] [int] NOT NULL,
  39. [Width_cm] [int] NOT NULL,
  40. [DataInsert] [datetime] NOT NULL
  41.  
  42. -- Customers table
  43.  
  44. CREATE TABLE [DW]. [Customers] (
  45. [Client_ID] [int] IDENTITY (1,1) NOT NULL,
  46. [Name] [nvarchar] (50) NOT NULL,
  47. [Surname] [nvarchar] (50) NOT NULL,
  48. [Social_Reason] [nvarchar] (80) NULL,
  49. [CF_PIVA] [nvarchar] (30) NOT NULL,
  50. [email] [nvarchar] (80) NOT NULL,
  51. [Telephone] [nvarchar] (30) NOT NULL,
  52. [Address] [nvarchar] (50) NOT NULL,
  53. [CAP] [int] NOT NULL,
  54. [City] [nvarchar] (50) NOT NULL,
  55. [Province] [nvarchar] (50) NOT NULL,
  56. [Country] [nvarchar] (50) NOT NULL,
  57. [DataInsert] [datetime] NOT NULL,
  58. CONSTRAINT [PK_ID_Cliente] PRIMARY KEY CLUSTERED 
  59.  
  60. -- Orders table
  61.  
  62. CREATE TABLE [DW]. [Orders] (
  63. [ID_Orders] [int] IDENTITY (1,1) NOT NULL,
  64. [Customer] [nvarchar] (80) NOT NULL,
  65. [Client_ID] [int] NOT NULL,
  66. [Article] [nvarchar] (30) NOT NULL,
  67. [Quantity] [int] NOT NULL,
  68. [Delivery] [date] NULL,
  69. [Payment] [nvarchar] (50) NOT NULL,
  70. [Payment_ID] [int] NULL,
  71. [DataInsert] [datetime] NOT NULL,
  72. [Shipping] [date] NULL,
  73.  CONSTRAINT [PK_Ordini] PRIMARY KEY CLUSTERED
  74.  
  75. -- Payment type table
  76.  
  77. CREATE TABLE [DW]. [TypePayment] (
  78. [ID_Payment] [int] IDENTITY (1,1) NOT NULL,
  79. [Payment] [nvarchar] (50) NOT NULL,
  80. [Description] [nchar] (150) NULL,
  81.  CONSTRAINT [PK_ID_Payment] PRIMARY KEY CLUSTERED
  82.  
  83.  
Jan 19 '22 #1
0 20278

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: M. Mehta | last post by:
It seems that you can not create a materialized view if you are using outer joins...can someone please verify this? Thanks M. Mehta Please follow my example below: created 2 tables:
5
by: ljlevend2 | last post by:
Is there any way to create a local server during runtime? For example, if you add an existing Web Site to a Solution from within Visual Studio (by right clicking the solution in the Solution...
0
by: qfchen | last post by:
Hi I'm using Visual Studio 2005 for database application. the database is MS access. I need to create a view in server explorer, when I right click on view folder, I can't see "Add New View" from...
3
by: zgh1970 | last post by:
Hi, All, We have a database on db2 udb aix. The database has federated server to db2 mainframe. Now We have already catalog database of db2/400 on the db2 UDB aix server. I tried to create new...
1
by: NithyaJai | last post by:
Hai, I got a doubt on creating a view? Is that passible to create a view in MS Access 2000....... if so plz help me to do it... Thanks....
1
by: WayneW | last post by:
I need to create a view of tables in 2 databases. Is this possible?
2
nirmalsingh
by: nirmalsingh | last post by:
hai all, i can view only solution explorer , i cant view server explorer window. i am new to .net. what should i do to view server explorer? ...
0
by: rupinder03 | last post by:
I want to create tree view in data grid in vb.net 2005.can anyone tell me hw to create it................its urgent.......plz reply soon..............
1
by: kensushi | last post by:
Hi, Im somewhat new to oracle SP writing. I need to do the following from the SP 1. execute the query 2. create a view and populate with the result of the above query 3 query that view and...
1
by: Liena | last post by:
Hi, How can I redirect from one page to anothe in an specific view from a multiview control? How do I do this in ASP. NET using C#? For ex: prtected void Button_Click(object sender, EventArgs...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.