Click here to Skip to main content
15,926,939 members
Home / Discussions / Database
   

Database

 
GeneralRe: how to display data in a listbox? Pin
Rocky#22-Aug-07 21:49
Rocky#22-Aug-07 21:49 
GeneralRe: how to display data in a listbox? Pin
Rharzkie22-Aug-07 21:51
Rharzkie22-Aug-07 21:51 
QuestionInvalid Cursor Pin
Programm3r22-Aug-07 1:17
Programm3r22-Aug-07 1:17 
AnswerRe: Invalid Cursor Pin
DerekFL25-Jul-08 8:18
DerekFL25-Jul-08 8:18 
QuestionJoining Three Tables Pin
ShuklaGirish22-Aug-07 1:01
ShuklaGirish22-Aug-07 1:01 
AnswerRe: Joining Three Tables Pin
Programm3r22-Aug-07 1:42
Programm3r22-Aug-07 1:42 
GeneralRe: Joining Three Tables Pin
ShuklaGirish22-Aug-07 1:46
ShuklaGirish22-Aug-07 1:46 
AnswerRe: Joining Three Tables Pin
Rami Said Abd Alhalim22-Aug-07 1:56
Rami Said Abd Alhalim22-Aug-07 1:56 
==============================
TABLE [Customers] (
==============================
[CustomerID]
[CompanyName]
[ContactName]
[ContactTitle]
[Address]
[City]
[Region]
[PostalCode]
[Country]
[Phone]
[Fax]
CONSTRAINT [PK_Customers] PRIMARY KEY CLUSTERED
(
[CustomerID]
) ON [PRIMARY]
==================================
TABLE Employee
===================================
EmployeeID
LastName
FirstName
Title
TitleOfCourtesy
BirthDate
HireDate
Address
City
Region
PostalCode
Country
HomePhone
Extension
Photo
Notes
ReportsTo
PhotoPath


Table Order
========================
3 OrderID
0 CustomerID
0 EmployeeID
0 OrderDate
0 RequiredDate
0 ShippedDate
0 ShipVia
0 Freight
0 ShipName
0 ShipAddress
0 ShipCity
0 ShipRegion
0 ShipPostalCode
0 ShipCountry
SELECT dbo.Customers.CompanyName, dbo.Employees.LastName, dbo.Employees.FirstName, dbo.Orders.OrderDate, dbo.Orders.RequiredDate
FROM dbo.Orders INNER JOIN
dbo.Customers ON dbo.Orders.CustomerID = dbo.Customers.CustomerID INNER JOIN
dbo.Employees ON dbo.Orders.EmployeeID = dbo.Employees.EmployeeID


Rami Abd Alhalim
QuestionTwo Tables with Same Name Pin
vimal_yet21-Aug-07 23:43
vimal_yet21-Aug-07 23:43 
AnswerRe: Two Tables with Same Name Pin
SimulationofSai22-Aug-07 0:17
SimulationofSai22-Aug-07 0:17 
GeneralRe: Two Tables with Same Name Pin
vimal_yet22-Aug-07 0:25
vimal_yet22-Aug-07 0:25 
QuestionTrouble with IN operator Pin
Navneet Hegde21-Aug-07 22:50
Navneet Hegde21-Aug-07 22:50 
AnswerRe: Trouble with IN operator Pin
Giorgi Dalakishvili21-Aug-07 23:10
mentorGiorgi Dalakishvili21-Aug-07 23:10 
GeneralRe: Trouble with IN operator Pin
Navneet Hegde21-Aug-07 23:14
Navneet Hegde21-Aug-07 23:14 
Questionsqlserver2005 Pin
saravanan0521-Aug-07 20:53
saravanan0521-Aug-07 20:53 
AnswerRe: sqlserver2005 Pin
Colin Angus Mackay21-Aug-07 22:12
Colin Angus Mackay21-Aug-07 22:12 
AnswerRe: sqlserver2005 Pin
Giorgi Dalakishvili21-Aug-07 22:13
mentorGiorgi Dalakishvili21-Aug-07 22:13 
QuestionHow to export sql query results to excel file Pin
RichardBlare21-Aug-07 20:16
RichardBlare21-Aug-07 20:16 
AnswerRe: How to export sql query results to excel file Pin
Blue_Boy21-Aug-07 21:53
Blue_Boy21-Aug-07 21:53 
AnswerRe: How to export sql query results to excel file Pin
Giorgi Dalakishvili21-Aug-07 22:53
mentorGiorgi Dalakishvili21-Aug-07 22:53 
QuestionHow to create a SCRIPT from a Stored Procedure in SQL Server 2005 Pin
T4AMD21-Aug-07 13:32
T4AMD21-Aug-07 13:32 
AnswerRe: How to create a SCRIPT from a Stored Procedure in SQL Server 2005 Pin
Colin Angus Mackay21-Aug-07 13:48
Colin Angus Mackay21-Aug-07 13:48 
GeneralSort in an SQL Select - Non Typical I think... Pin
code-frog21-Aug-07 7:45
professionalcode-frog21-Aug-07 7:45 
GeneralRe: Sort in an SQL Select - Non Typical I think... Pin
Chris Meech21-Aug-07 8:00
Chris Meech21-Aug-07 8:00 
GeneralRe: Sort in an SQL Select - Non Typical I think... Pin
DerekFL21-Aug-07 10:33
DerekFL21-Aug-07 10:33 

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.