0% found this document useful (0 votes)
12 views20 pages

Vishal Udar Aceess

dfxggggggggggggggggggggggggggggggggggggggggggggggggoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppprrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views20 pages

Vishal Udar Aceess

dfxggggggggggggggggggggggggggggggggggggggggggggggggoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppprrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 20

How to create a table in Microsoft Access -:

Step 1- CREATE A BLANK TABLE

After opening M.S Access , select blank database.

AFTER SELECTING BLANK DATABASE, CLICK ON CREATE.

STEP 2
CLICK ON VIEW AND SELECT DESIGN VIEW.

STEP 3
WRITE FIELD NAME

WRITE DATA TYPE

DATA TYPE-: DAT A TYPE


TEXT MEMO NUMBER UP TO 255 CHARACTERS UP TO 65535 CHARACTERS LONG INTEGER INTEGER BYTE SINGLE DOUBLE TEXT-INCLUDING NUMERIC TEXT LONGER PIECES OF TEXT -2147483648 TO +2147483647 -32768 TO +32767 0 TO 255 FIGURES UPTO 3.402823*10POWER38 FIGURES UPTO 1.79764313486231*10POWE R38 Both date &time Only dates Only time Upto 15 figures Numbers with above currency Ditto but using % Automatic counter For only 2 possible

SIZE

STORES

DATE/time

currency

general Long/med/short date Long/med/short time currency fixed percentages

autonumbe r Yes/no

Yes/no,true/fal

se ole object hyperlink

values For pictures,sound,video For link to the www or email

Step-4
After filling the field name and data type. Your table will look like-:

Setp-5
After this you need to save your database.

Step-6

On the top left corner click on viewthen datasheet

view.

Step-7
You will get to see a page like-:

Fill the details and save the document. Your database is ready.

QUERIES ON MS ACCESS QUERIES 1 SELECT Employee.EId, Employee.Salr FROM Employee WHERE (((Employee.DeptNo)="D5"));

QUERIES 2 SELECT Employee.Desig, Employee.Name, Employee.DOB FROM Employee WHERE (((Employee.EId)="+123" Or (Employee.EId)="506"));

QUERIES 4 SELECT project.PName, project.Budget, project.PNo FROM project WHERE (((project.Budget)>=50000));

QUERIES 5 SELECT Dept.DMgrID FROM Dept WHERE (((Dept.DMgrID)="456"));

QUERIES 6 SELECT WorksOn.PNo, WorksOn.No_of_Hours, WorksOn.EId FROM WorksOn

WHERE (((WorksOn.Responsibility)="Techician"));

QUERIES 7 SELECT project.PNo, project.PName

FROM project WHERE (((project.Budget)>10000));

QUERIES 8 SELECT WorksOn.EId, WorksOn.PNo, WorksOn.Responsibility, WorksOn.No_of_Hours FROM WorksOn

WHERE (((WorksOn.Responsibility)="Mgr") AND ((WorksOn.No_of_Hours)<10));

QUERIES 9

SELECT Employee.EId, Employee.Name FROM Employee WHERE (((Employee.Salr)>35000) AND ((Employee.Desig)="LM")) OR (((Employee.Desig)="JM"));

QUERIES 10 SELECT Employee.Name, Employee.EId FROM Employee

WHERE (((Employee.DeptNo)="D1")) ORDER BY Employee.Salr DESC;

QUERIES 11 SELECT Dept.DNo, Dept.DName, Dept.DMgrID

FROM Dept ORDER BY Dept.DNo;

QUERIES 12 SELECT Dept.DName, Dept.DMgrID FROM Dept WHERE (((Dept.DNo)="D2"));

You might also like