What are the different ways to add a table in Access database? Explain.[5]

0
GK SIR
Jun 16, 2025 07:44 AM 0 Answers Database
Member Since Dec 2016
Subscribed Subscribe Not subscribe
Flag(0)

Different ways to add a table in MS Access are given below:

  1. Datasheet View:
    • We can directly type data like in Excel.
    • Just go to Create > Table and start entering field names and data.
  2. Design View:
    • We can set field names, data types, and primary key.
    • Go to Create > Table Design for more control over the table structure.
  3. Using Templates:
    • Access provides ready-made tables like Contacts, Tasks, etc.
    • Go to Create > Application Parts to use them.
  4. Importing from External Sources:
    • We can create tables by importing data from Excel, text files, etc.
    • Go to External Data and choose your file.
  5. Using SQL:
    • We can create a table by writing SQL code.
    • Example:
  • CREATE TABLE Students (ID AUTOINCREMENT, Name TEXT, Age INT);

 

MS Access मा Table थप्ने विभिन्न तरिकाहरू यस प्रसार रहेका छन्:

  1. Datasheet View:
    • हामी Excel जस्तै सिधै डेटा टाइप गर्न सक्छौं।
    • यसका लागि Create > Table मा गएर Field नामहरू र डेटा प्रविष्ट गर्न सुरु गर्न सकिन्छ।
  2. Design View:
    • हामी यसमा Field Name, Data Type, र Primary Key सेट गर्न सक्छौं।
    • यसको लागि Create > Table Design मा गएर यसमा विभिन्न विकल्पहरु प्रयोग गर्न सकिन्छ.
  3. Using Templates:
    • Access मा तयार पारिएका तालिकाहरू जस्तै Contacts, Tasks आदिको प्रयोग गर्न सकिन्छ।
    • यसको लागि Create > Application Parts मा गएर प्रयोग गर्न सकिन्छ ।
  4. Importing from External Sources:
    • Excel, Text file आदि बाट डेटा आयात (Import) गरेर तालिका बनाउन सकिन्छ।
    • यसको लागि External Data विकल्प छनौट गरी जस्तै Excel फाइलबाट डाटाहरुलाई Import गर्न सकिन्छ ।
  5. Using SQL:
    • SQL कोड लेखेर पनि तालिका बनाउन सकिन्छ।
    • उदाहरणको लागि:

CREATE TABLE Students (ID AUTOINCREMENT, Name TEXT, Age INT);

0 Subscribers
Submit Answer
Please login to submit answer.
0 Answers
Sort By:

Leave a Reply

Your email address will not be published. Required fields are marked *

*