Skip to content

METHOD

Here is a simple SQL command using PostgreSQL:

CREATE TABLE all_games (
title varchar(100),
developer varchar(100),
year_published int
);

On running the above command, no explicit output is returned on successful execution in PostgreSQL.

The above SQL command creates a new table named all_games using CREATE TABLE statement in PostgreSQL. This table includes three columns: title (type varchar(100)), developer (type varchar(100)), and year_published (type int).