About 8,780,000 results
Open links in new tab
  1. MySQL CREATE TABLE Statement - W3Schools

    The MySQL CREATE TABLE Statement The CREATE TABLE statement is used to create a new table in a database. Syntax

  2. SQL CREATE TABLE - GeeksforGeeks

    Nov 11, 2025 · The CREATE TABLE AS SELECT command allows us to duplicate an entire table or select specific columns to form a new one. The following query creates a new table called SubTable …

  3. T-SQL Tutorial: Create and Query Database Objects - SQL Server

    Nov 18, 2025 · This lesson shows you how to create a database, create a table in the database, and then access and change the data in the table.

  4. MySQL CREATE TABLE Statement - GeeksforGeeks

    Mar 14, 2026 · The MySQL Command Line Client allows you to create a table using the CREATE TABLE statement. This method requires specifying the table name, column names, and their data …

  5. CRIAR TABELA (Transact-SQL) - SQL Server | Microsoft Learn

    CREATE TABLE cria uma nova tabela no banco de dados.

  6. PostgreSQL Create Table - W3Schools

    Connect to the Database To create a new database table using the SQL Shell, make sure you are connected to the database. If not, follow the steps in the Get Started chapter of this tutorial. Once …

  7. How to Create a Temp Table in SQL: Step-by-Step Guide with Examples

    What is a temp table in SQL? A temp table in SQL is a table that exists only for the duration of a session or a specific database operation. It behaves just like a regular table, allowing us to store data, define …

  8. Lệnh CREATE TABLE trong SQL để tạo bảng cơ sở dữ liệu

    Oct 15, 2025 · Trong SQL, tạo bảng là một trong số nhiệm vụ thiết yếu nhất để cấu trúc cơ sở dữ liệu. Câu lệnh CREATE TABLE định nghĩa cấu trúc của bảng cơ sở dữ liệu, chỉ định tên cột, kiểu dữ liệu …

  9. GRANT Database Permissions (Transact-SQL) - SQL Server

    Nov 18, 2025 · GRANT Database Permissions (Transact-SQL) Important A combination of ALTER and REFERENCE permissions in some cases could allow the grantee to view data or execute …

  10. JSON to SQL Generator - Convert JSON to CREATE TABLE | JSON Utils

    Converting JSON data to SQL CREATE TABLE statements is a fundamental task in modern database design and development. This comprehensive guide explains how to transform your JSON objects …