9
1

9.0 MICROSOFT SQL SERVER

  • Upload
    lizina

  • View
    98

  • Download
    0

Embed Size (px)

DESCRIPTION

CHAPTER 9. 9.0 MICROSOFT SQL SERVER. 9.1 Creating Database- Sample Clinic Database . 9.2 Query Analyzer. Visual Programming. Chapter 9. 9.1 Creating Database – Open MS-SQL server as follows: Select Start->All Programs-> Microsoft SQL Server -> Enterprise Manager. Visual Programming. - PowerPoint PPT Presentation

Citation preview

Page 1: 9.0 MICROSOFT SQL  SERVER

1

Page 2: 9.0 MICROSOFT SQL  SERVER

2

Visual Programming Chapter 9

9.1 Creating Database – Open MS-SQL server as follows: Select Start->All Programs-> Microsoft SQL Server -> Enterprise Manager

Page 3: 9.0 MICROSOFT SQL  SERVER

3

Visual Programming Chapter 9

9.1 Creating Database – Sample Clinic Database

Page 4: 9.0 MICROSOFT SQL  SERVER

4

Visual Programming Chapter 9

9.1 Creating Database – Sample Clinic Database

Page 5: 9.0 MICROSOFT SQL  SERVER

5

Visual Programming Chapter 9

9.1 Creating Database – creating Patient table

Page 6: 9.0 MICROSOFT SQL  SERVER

6

Visual Programming Chapter 9

9.1 Creating Database – creating Patient table columns (PatientNo, PatientName, PatientIC, etc.) and save as Patient

Page 7: 9.0 MICROSOFT SQL  SERVER

7

Visual Programming Chapter 9

New Table – to create another tableDesign Table – to open the existing table and modify the structure of the tableOpen Table – Return All Rows – to add, edit or view data

9.1 Creating Database – creating Patient table

Page 8: 9.0 MICROSOFT SQL  SERVER

8

Visual Programming Chapter 9

Key in data for all columns and data will be saved upon exit the table.

9.1 Creating Database – Patient table – input data

Page 9: 9.0 MICROSOFT SQL  SERVER

9

• Repeat the same process from page 249 until 252 to create another table for a Clinic database.

• The other table are Doctor, Medicine, Payment, and Appointment. You must also key in at least five records for each of the table.

Visual Programming Chapter 9

9.1 Creating Database – creating other tables