About 390 results
Open links in new tab
  1. How to Describe a Table in SQL? - Scaler Topics

    Mar 31, 2024 · DESCRIBE or DESC in SQL is a statement that shows the structure of the table. Learn how to describe a table in SQL on Scaler Topics.

  2. DESC Command in SQL - Scaler Topics

    May 4, 2023 · Overview DESCRIBE table is a SQL command that is accountable for showing detailed information about the structure or the schema of a specific table in a database, such as the names of …

  3. Describe table MySQL- Scaler Topics

    Apr 9, 2024 · The DESCRIBE or DESC command in MySQL is a useful way to retrieve information about a table's structure, including column names, data types, and constraints. To use the …

  4. What are DDL, DML, and DCL in SQL? | Scaler Topics

    Oct 17, 2022 · What are DDL, DML, and DCL Commands? DDL Commands DDL commands are SQL commands used to modify or alter the structure of the database. The following is the list of DDL …

  5. Equi Join and Non-Equi Join in SQL - Scaler Topics

    Jun 22, 2024 · Non-Equi Join in SQL retrieves data using any operator or condition except the equality condition. The value of the column in each row from the source table is compared with the …

  6. IIF () Function in SQL Server - Scaler Topics

    Jan 27, 2024 · Using Aggregate Function with IIF () Function in SQL Server To save the hassle, let's use the Students table which we created in the previous example (example 4).

  7. SQL Commands DDL, DML, DCL, TCL, DQL - Scaler Topics

    Apr 30, 2024 · In this article on SQL basics, we study about the following types of commands: DDL (Data Definition Language): To make/perform changes to the physical structure of any table residing …

  8. SQL Scripts What is It, Uses, and Example - Scaler Topics

    Jun 10, 2024 · In this example, we have four SQL scripts, each performing a specific step in a multi-step process: CreateTables.sql: This script creates two tables, Employees and Departments, with their …

  9. Difference Between DELETE, DROP and TRUNCATE - Scaler

    Mar 11, 2024 · In this article by Scaler Topics, we will understand the differences between delete, drop and truncate including their types, syntax, and examples.

  10. Delete duplicate records in SQL - Scaler Topics

    Mar 31, 2024 · Common Table Expressions (CTE) with the row_number () function partition data to identify duplicates and facilitate their deletion. The RANK function, combined with the PARTITION …