About 23,000,000 results
Open links in new tab
  1. PostgreSQL Create Table - W3Schools

    Create Table. The following SQL statement will create a table named cars in your PostgreSQL database:

  2. PostgreSQL - CREATE TABLE - GeeksforGeeks

    Apr 15, 2025 · In PostgreSQL, the CREATE TABLE statement is used to define a new table within a database. It allows us to specify the table's structure, including column names, data types, …

  3. PostgreSQL CREATE TABLE Statement - PostgreSQL Tutorial

    Feb 16, 2024 · To create a table in a database, you need to execute the CREATE TABLE statement using a PostgreSQL client such as psql and pgAdmin. We’ll show you step-by-step …

  4. PostgreSQL: Documentation: 17: CREATE TABLE

    May 8, 2025 · CREATE TABLE cities ( city_id bigserial not null, name text not null, population bigint ) PARTITION BY LIST (left(lower(name), 1)); Create a hash partitioned table: CREATE …

  5. PostgreSQL: Documentation: 17: 2.3. Creating a New Table

    May 8, 2025 · You can create a new table by specifying the table name, along with all column names and their types: city varchar(80), temp_lo int, -- low temperature. temp_hi int, -- high …

  6. How to generate the "create table" sql statement for an existing table

    Oct 2, 2019 · How do I get the create table SQL statement for an existing table in Postgres via commandline or SQL statement?

  7. How to create a table in PostgreSQL - DatabaseFAQs.com

    Feb 17, 2025 · Learn How to create a table in PostgreSQL using Terminal and pgAdmin and Create a table in PostgreSQL with Foreign Key.

  8. Create Table in PostgreSQL: A Guide With Examples

    Aug 2, 2021 · In this article, we are going to explore a bunch of ways to create a table in PostgreSQL. 1. Creating a table using the PostgreSQL CREATE TABLE statement. 2. …

  9. PostgreSQL basic: Create a table and Insert Data - CodeChit

    Jan 3, 2021 · In this article, I’m gonna guide you on how you can create a table in the Postgres database. And will also show you how you can insert data into those tables. Basically, we’re …

  10. PostgreSQL: CREATE TABLE Statement - TechOnTheNet

    This PostgreSQL tutorial explains how to use the PostgreSQL CREATE TABLE statement with syntax and examples. The PostgreSQL CREATE TABLE statement allows you to create and …

  11. Some results have been removed
Refresh