0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

海外の転職面接関連で完走を目指すAdvent Calendar 2023

Day 8

Job Interview Questions SQL 1

Last updated at Posted at 2023-12-25
  1. Explain about Joins, Views, Normalization, Triggers.

    • Joins: Joins combine rows from two or more tables based on a related column. Types include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.
      結合: 結合は、関連する列に基づいて2つ以上のテーブルから行を結合します。種類には、INNER JOIN、LEFT JOIN、RIGHT JOIN、FULL JOINがあります。

    • Views: A view is a virtual table created by a query on one or more tables. It can simplify complex queries and enhance security by restricting access to specific data.
      ビュー: ビューは、1つ以上のテーブルに対するクエリによって作成された仮想テーブルです。複雑なクエリを簡素化し、特定のデータへのアクセスを制限することでセキュリティを強化できます。

    • Normalization: This process organizes a database to reduce redundancy and improve data integrity by dividing data into related tables.
      正規化: このプロセスは、データを関連するテーブルに分割することで冗長性を減らし、データの整合性を向上させるためにデータベースを整理します。

    • Triggers: A trigger is a set of instructions that automatically executes in response to certain events on a table, such as INSERT, UPDATE, or DELETE.
      トリガー: トリガーは、INSERT、UPDATE、DELETEなどのテーブル上の特定のイベントに応じて自動的に実行される一連の命令です。

  2. What is SQL?
    SQL (Structured Query Language) is a standard programming language used for managing and manipulating relational databases.
    **SQL(構造化問い合わせ言語)**は、リレーショナルデータベースを管理し操作するために使用される標準のプログラミング言語です。

  3. What are the usages of SQL?
    SQL is used for querying data, inserting, updating, and deleting records, creating and modifying database structures, and managing user permissions.
    SQLは、データのクエリ、レコードの挿入、更新、削除、データベース構造の作成と変更、およびユーザー権限の管理に使用されます。

  4. Does SQL support programming language features?
    SQL includes programming constructs such as control-of-flow statements (e.g., IF, CASE), variables, and procedures, especially in dialects like PL/SQL or T-SQL.
    SQLは、特にPL/SQLやT-SQLのような方言で、制御フロー文(IF、CASEなど)、変数、および手続きなどのプログラミング構文を含んでいます。

  5. What are the subsets of SQL?
    The main subsets of SQL are:

    • DDL (Data Definition Language): Defines database structure (e.g., CREATE, ALTER, DROP).
      DDL(データ定義言語): データベース構造を定義します(例:CREATE、ALTER、DROP)。

    • DML (Data Manipulation Language): Manages data within schema objects (e.g., SELECT, INSERT, UPDATE, DELETE).
      DML(データ操作言語): スキーマオブジェクト内のデータを管理します(例:SELECT、INSERT、UPDATE、DELETE)。

    • DCL (Data Control Language): Controls access to data (e.g., GRANT, REVOKE).
      DCL(データ制御言語): データへのアクセスを制御します(例:GRANT、REVOKE)。

    • TCL (Transaction Control Language): Manages transactions (e.g., COMMIT, ROLLBACK).
      TCL(トランザクション制御言語): トランザクションを管理します(例:COMMIT、ROLLBACK)。

  6. What is the purpose of DDL Language?
    DDL is used to define and modify database structures, such as creating tables and indexes.
    DDLは、テーブルやインデックスの作成など、データベース構造を定義および変更するために使用されます。

  7. What is the purpose of DML Language?
    DML is used for manipulating data in existing database tables, allowing for data retrieval and modification.
    DMLは、既存のデータベーステーブル内のデータを操作するために使用され、データの取得や変更を可能にします。

  8. What are tables and fields in the database?

    • Tables: Structured data sets consisting of rows and columns, where each table represents a specific entity.
      テーブル: 行と列で構成される構造化データセットであり、各テーブルは特定のエンティティを表します。

    • Fields (or Columns): Attributes that define the properties of data stored in a table.
      フィールド(または列): テーブルに格納されるデータのプロパティを定義する属性です。

  9. What is a primary key?
    A primary key is a unique identifier for each record in a table, ensuring that no two rows have the same primary key value.
    プライマリキーは、テーブル内の各レコードの一意の識別子であり、2つの行が同じプライマリキー値を持たないことを保証します。

  10. What is a foreign key?
    A foreign key is a column or set of columns in one table that uniquely identifies a row in another table, establishing a relationship between the two tables.
    外部キーは、1つのテーブルの列または列のセットであり、別のテーブルの行を一意に識別し、2つのテーブル間の関係を確立します。

  11. What is a unique key?
    A unique key constraint ensures that all values in a column are distinct from one another, allowing for one null value but no duplicates.
    ユニークキー制約は、列内のすべての値が互いに異なることを保証し、1つのNULL値を許可しますが、重複は許可されません。

  12. What is the difference between a primary key and a unique key?

    • A primary key uniquely identifies records and cannot contain null values, while a unique key also ensures uniqueness but can contain one null value.
      プライマリキーはレコードを一意に識別し、NULL値を含むことができませんが、ユニークキーは一意性も保証し、1つのNULL値を含むことができます。
  13. What is a Database?
    A database is an organized collection of structured information or data, typically stored electronically in a computer system.
    データベースは、構造化された情報またはデータの整理されたコレクションであり、通常はコンピュータシステムに電子的に保存されています。

  14. What is meant by DBMS?
    DBMS (Database Management System) is software that facilitates the creation, manipulation, and administration of databases, allowing users to interact with data.
    DBMS(データベース管理システム)は、データベースの作成、操作、および管理を容易にするソフトウェアであり、ユーザーがデータと対話できるようにします。

  15. What are the different types of database management systems?
    The main types are:

    • Hierarchical DBMS
    • Network DBMS
    • Relational DBMS (RDBMS)
    • Object-oriented DBMS
    • NoSQL DBMS
      主なタイプは以下の通りです:
    • 階層型DBMS
    • ネットワーク型DBMS
    • リレーショナルDBMS(RDBMS)
    • オブジェクト指向DBMS
    • NoSQL DBMS
  16. What is RDBMS?
    RDBMS (Relational Database Management System) is a type of DBMS that stores data in a structured format using rows and columns, supports relationships between tables, and adheres to the principles of the relational model.
    RDBMS(リレーショナルデータベース管理システム)は、行と列を使用して構造化された形式でデータを保存し、テーブル間の関係をサポートし、リレーショナルモデルの原則に従ったDBMSの一種です。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?