Click here to Skip to main content
15,881,559 members
Home / Discussions / Database
   

Database

 
AnswerRe: Array Issue Pin
Richard Deeming24-Oct-21 22:05
mveRichard Deeming24-Oct-21 22:05 
GeneralRe: Array Issue Pin
MekaC25-Oct-21 11:13
MekaC25-Oct-21 11:13 
AnswerRe: Array Issue Pin
Richard MacCutchan24-Oct-21 22:07
mveRichard MacCutchan24-Oct-21 22:07 
GeneralRe: Array Issue Pin
MekaC25-Oct-21 11:14
MekaC25-Oct-21 11:14 
AnswerRe: Array Issue Pin
jkirkerx28-Oct-21 9:04
professionaljkirkerx28-Oct-21 9:04 
QuestionLooking for feedback and contributions to database project Pin Pin
Michael Sydney Balloni17-Oct-21 13:06
professionalMichael Sydney Balloni17-Oct-21 13:06 
QuestionHow to write stored procedure in mysql workbench. SELECT, INSERT, UPDATE,DELETE Pin
Member 1539388914-Oct-21 0:05
Member 1539388914-Oct-21 0:05 
AnswerRe: How to write stored procedure in mysql workbench. SELECT, INSERT, UPDATE,DELETE Pin
Richard MacCutchan14-Oct-21 0:33
mveRichard MacCutchan14-Oct-21 0:33 
AnswerRe: How to write stored procedure in mysql workbench. SELECT, INSERT, UPDATE,DELETE Pin
CHill6022-Oct-21 0:08
mveCHill6022-Oct-21 0:08 
Questionremove Pin
Member 1489067811-Oct-21 20:23
Member 1489067811-Oct-21 20:23 
AnswerRe: Sql Match Pin
OriginalGriff11-Oct-21 20:24
mveOriginalGriff11-Oct-21 20:24 
Question[Resolved] Need Help with this SQL Statement Pin
crmfghtr5-Oct-21 14:24
crmfghtr5-Oct-21 14:24 
<pre lang="VB">Dim strSql As String = "SELECT DISTINCT Orders.OrderId, Orders.ClientId, OrderDate, DueDate, SubTotal, SalesTax, CityTax, LaborTax, Discount, Delivery, OrderTotal,
OrderDetails.ItemId, OrderDetails.Category, OrderDetails.Description, OrderDetails.Qnty, OrderDetails.Unit, OrderDetails.RetailPrice, OrderDetails.Total, (Select MIN (OrderPymts.PrevBal)) As PrevBal, (Select MAX(OrderPymts.PaymentDate)) As PaymentDate,
(Select MIN (OrderPymts.Payment)) As Payment, (Select MIN (OrderPymts.Balance)) As Balance, OrderPymts.Terms, (Select MAX(OrderPymts.PaymentId)) As PaymentId, Clients.Name,
Clients.Address + ' ' + Clients.City + ', ' + Clients.State + '. ' + Clients.Zip AS ClientsAddress,
'Phone : ' + Clients.Phone + ' Fax : ' + Clients.Fax + ' CellPhone : ' + Clients.CellPhone + ' Email : ' + Clients.Email As ContactInfo, Clients.Since
FROM Orders, Clients
INNER JOIN OrderDetails ON OrderDetails.OrderId = Orders.OrderId
INNER JOIN Clients ON Orders.ClientId = Clients.ClientId
INNER JOIN OrderPymts ON OrderPymts.OrderId = Orders.OrderId
WHERE (Orders.OrderId = @OrderId)"</pre>

I'm having trouble with this statement. This statement is used to call the records in the invoice. Odd since I have 2 records, One with multiple items and only 1 payment and it displays fine. The other record with multiple detail items and multiple payments displays the items twice on the invoice report and shows the first payment record instead of the latest payment record. There are 3 tables, Orders, OrderDetails, and OrderPymts. So I'm trying to query from all three tables based on the orderId.
Any Help would be greatly appreciated.

-- modified 10-Oct-21 22:16pm.
AnswerRe: Need Help with this SQL Statement Pin
Richard Deeming5-Oct-21 21:48
mveRichard Deeming5-Oct-21 21:48 
GeneralRe: Need Help with this SQL Statement Pin
crmfghtr6-Oct-21 2:37
crmfghtr6-Oct-21 2:37 
GeneralRe: Need Help with this SQL Statement Pin
Richard Deeming6-Oct-21 3:36
mveRichard Deeming6-Oct-21 3:36 
GeneralRe: Need Help with this SQL Statement Pin
Eddy Vluggen8-Oct-21 15:23
professionalEddy Vluggen8-Oct-21 15:23 
General[Resolved] Re: Need Help with this SQL Statement Pin
crmfghtr10-Oct-21 16:18
crmfghtr10-Oct-21 16:18 
QuestionImport CSV Problems Pin
Jörgen Andersson3-Oct-21 21:32
professionalJörgen Andersson3-Oct-21 21:32 
AnswerRe: Import CSV Problems Pin
Mycroft Holmes4-Oct-21 12:12
professionalMycroft Holmes4-Oct-21 12:12 
GeneralRe: Import CSV Problems Pin
Jörgen Andersson4-Oct-21 20:24
professionalJörgen Andersson4-Oct-21 20:24 
AnswerRe: Import CSV Problems Pin
CHill604-Oct-21 21:04
mveCHill604-Oct-21 21:04 
GeneralRe: Import CSV Problems Pin
Jörgen Andersson4-Oct-21 21:13
professionalJörgen Andersson4-Oct-21 21:13 
GeneralRe: Import CSV Problems Pin
CHill604-Oct-21 21:34
mveCHill604-Oct-21 21:34 
GeneralRe: Import CSV Problems Pin
Jörgen Andersson4-Oct-21 21:43
professionalJörgen Andersson4-Oct-21 21:43 
GeneralRe: Import CSV Problems Pin
Jörgen Andersson4-Oct-21 22:04
professionalJörgen Andersson4-Oct-21 22:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.