473,287 Members | 1,709 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,287 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 20542

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...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...

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.