CREATE TABLE users ( )
create table bricks (
colour varchar2(10),
shape varchar2(10)
);
select table_name
from user_tables
where table_name = 'BRICKS';
CREATE TABLE fact (
id SERIAL PRIMARY KEY NOT NULL,
type VARCHAR(255),
text TEXT
);
create table FROM world as
SELECT name, population BETWEEN 1000000 AND 1250000
CREATE TABLE history (
author VARCHAR(128),
title VARCHAR(128),
type VARCHAR(16),
year CHAR(4)) ENGINE InnoDB;
rollNo INT
studentName VARCHAR(50)
branch VARCHAR(10)
semester INT
create table bricks (
colour VARCHAR2(10),
shape VARCHAR2(10)
);
select table_name
from user_tables
where table_name = 'BRICKS';