استرجاع البيانات باستخدام SQL - المعلوماتية
33 Questions
0 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to lesson

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

ما هو اسم المعهد المذكور في المحتوى؟

  • المعهد الأوروبي لإدارة الأعمال
  • المعهد الفني للمعلومات
  • المعهد العالي للتكنولوجيا
  • المعهد العالي للحاسب الآلي وإدارة الأعمال (correct)
  • ما هي الفرقة الدراسية المشار إليها في المحتوى؟

  • الفرقة الثالثة (correct)
  • الفرقة الأولى
  • الفرقة الرابعة
  • الفرقة الثانية
  • ما هي السنة الدراسية المعنية في المحتوى؟

  • 2024-2023
  • 2025-2024 (correct)
  • 2023-2022
  • 2026-2025
  • ما هو اسم المادة الدراسية المذكورة في المحتوى؟

    <p>Database 2</p> Signup and view all the answers

    من هو المحاضر المذكور في المحتوى؟

    <p>د. غير محدد</p> Signup and view all the answers

    ما هي خاصية جمل SQL في حالة الكتابة؟

    <p>جمل SQL لا تتأثر بحالة الأحرف.</p> Signup and view all the answers

    أي من الخيارات التالية يمثل أمرًا صحيحًا عند استخدام جملة SELECT في SQL؟

    <p>يمكن استرجاع بيانات من كافة الأعمدة أو من أعمدة محددة.</p> Signup and view all the answers

    ما هي الخطوة الأولى عند كتابة جملة SQL?

    <p>كتابة جملة SELECT.</p> Signup and view all the answers

    ما هو الأمر الذي يسمح لك بعرض هيكل الجدول في SQL؟

    <p>DESCRIBE</p> Signup and view all the answers

    ما هو الأمر الذي يتم استخدامه للخروج من SQL؟

    <p>EXIT SQL</p> Signup and view all the answers

    ما الذي يجب عليك استخدامه لإنهاء كل عبارة SQL في SQL Plus؟

    <p>فاصلة منقوطة</p> Signup and view all the answers

    أي من الخيارات التالية يعتبر كلمة محجوزة يجب تجنب استخدامها عند إنشاء الكائنات؟

    <p>SELECT</p> Signup and view all the answers

    هل SQL حساسة لحالة الأحرف؟

    <p>لا، ليست حساسة للحالة</p> Signup and view all the answers

    كم عدد الأسطر التي يمكنك إدخال عبارات SQL عليها؟

    <p>يمكن إدخالها على سطر واحد أو عدة أسطر</p> Signup and view all the answers

    أي من الخيارات التالية غير صحيح عند استخدام SQL؟

    <p>يمكن استخدام الكلمات المحجوزة في الأسماء</p> Signup and view all the answers

    ما هي الأداة المطلوبة لإنهاء كل عبارة في SQL ؟

    <p>فاصلة منقوطة</p> Signup and view all the answers

    ما هي أحد القدرات الرئيسية لجمل SELECT في SQL؟

    <p>الدمج</p> Signup and view all the answers

    ما الذي يتعين عليك تشغيله لبدء العمل مع Oracle SQL؟

    <p>SQL Plus</p> Signup and view all the answers

    ما هي إحدى العمليات التي يمكن القيام بها باستخدام SQL SELECT؟

    <p>اختيار بيانات محددة</p> Signup and view all the answers

    ما هو اسم النسخة المستخدمة من Oracle في السياق المذكور؟

    <p>OraDB21</p> Signup and view all the answers

    ما هو الاسم المستخدم للدخول إلى قاعدة البيانات؟

    <p>SCOTT</p> Signup and view all the answers

    أي من الاستعلامات التالية تستخدم لعرض كافة الجداول الموجودة في المستخدم الحالي؟

    <p>SELECT * FROM Tab;</p> Signup and view all the answers

    أي من الخيارات التالية يستخدم لعرض كافة البيانات في جدول العملاء؟

    <p>SELECT * FROM Customers;</p> Signup and view all the answers

    أي من التعليمات التالية تستخدم لعرض بيانات محددة من جدول؟

    <p>SELECT Column1, Column2 FROM Table_name;</p> Signup and view all the answers

    ما هو الاستعلام الصحيح لعرض كافة البيانات الموجودة في جدول الموظفين؟

    <p>SELECT * FROM emp;</p> Signup and view all the answers

    ما هو الأمر المستخدم لعرض هيكل جدول معين?

    <p>DESCRIBE table_name</p> Signup and view all the answers

    كيف يمكنك مسح أو تنظيف الشاشة في Oracle SQL؟

    <p>CL SCR</p> Signup and view all the answers

    ما هو الأمر المستخدم للخروج من Oracle SQL؟

    <p>EXIT</p> Signup and view all the answers

    ما هو الأمر المستخدم لعرض جميع أعمدة جدول معين؟

    <p>SELECT * FROM table_name</p> Signup and view all the answers

    أي من الخيارات التالية تستخدم لعرض بيانات اسم الموظف والمهنة؟

    <p>SELECT ename, job FROM emp</p> Signup and view all the answers

    ما هو الأمر المستخدم لعرض مواصفات جدول الموظفين؟

    <p>DESCRIBE emp</p> Signup and view all the answers

    ما هو الأمر المستخدم لعرض بيانات رقم الموظف واسم الموظف والمرتبات؟

    <p>SELECT empno, ename, sal FROM emp</p> Signup and view all the answers

    ما هو أمر عرض جميع الجداول الموجودة؟

    <p>SELECT * FROM tab</p> Signup and view all the answers

    Study Notes

    Database 2 - Lecture Notes

    • Course: Business Information Systems
    • Year: 2024-2025
    • Class: Third Year
    • Lecturer: Dr. Mohammed Elmetwaly
    • Software: Oracle Database
    • Topic: Retrieving Data Using SQL SELECT Statements

    Objectives

    • Writing SQL statements
    • Running Oracle SQL
    • Selecting all columns
    • Selecting specific columns
    • Clearing the screen
    • Displaying the table structure
    • Exiting SQL

    Key SQL Concepts

    • SQL statements are not case-sensitive.
    • SQL statements can be entered on one or more lines.
    • Do not use reserved words when creating objects.
    • In SQL Plus, statements end with a semicolon (;).
    • Running Oracle SQL: Steps outlined to start Oracle environment. (e.g., Start > Programs > Oracle > OraDB21-Home1 > SQL Plus)
    • Selecting all columns: Use SELECT * FROM table_name;
    • Selecting specific columns: SELECT column1, column2, … FROM table_name;
    • Clearing the screen: Use CL SCR;
    • Displaying table structure: Use DESCRIBE table_name; or DESC table_name;
    • Exiting SQL: EXIT;
    • SQL SELECT Statements Capabilities: Projection (selecting specific columns) and selection (retrieving rows meeting specific criteria).
    • Valid SQL user: User account and password required (e.g., User: SCOTT, Password: TIGER, Database: ORCL).

    SQL Tables and Data

    • Retrieving all tables: SELECT * FROM tab; (Displays all tables for current user SCOTT)
    • Example Data Retrieval: Illustrating how to retrieve data from tables (e.g., SELECT employee_id, last_name, job_id, department_id FROM employees; retrieves specific attributes from employee table)
    • Specific Column Selection: Examples of selecting data from multiple columns (e.g., SELECT ename,job FROM emp;, SELECT empno,ename,sal FROM emp;, SELECT empno, ename, comm, hiredate FROM emp;)
    • WHERE Clause: Using WHERE clause to fetch specific rows that match conditions. Illustrative example given.

    Quiz Questions

    • Criteria for writing a SQL statement
    • Methods for displaying all columns in a table
    • How to describe a table in the SQL environment
    • SQL commands to clear the screen
    • SQL commands to exit the environment

    Studying That Suits You

    Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

    Quiz Team

    Related Documents

    Database 2 Lecture Notes PDF

    Description

    يتناول هذا الاختبار استرجاع البيانات باستخدام جمل SQL SELECT في نظام Oracle. سيتم مناقشة كيفية كتابة جمل SQL، تحديد جميع الأعمدة، وتحديد أعمدة معينة. هذا مورد مهم لطلاب السنة الثالثة في نظم المعلومات الأعمال.

    More Like This

    Use Quizgecko on...
    Browser
    Browser