¿Declaración de SQL para escribir la tabla?

trabajando en un proyecto de red social. solo tengo que armar la instrucción sql para crear las tablas y necesito un poco de ayuda con cómo se haría esto y cómo funcionarían las relaciones entre las tablas.

drop table users;
drop table intrest;
drop table friendships;

create table users(
id INT,
Fname char(15),
Lname char(15),
email char(20),
street char(15),
state char(2),
zip INT,
age INT,
gender char (2),
phone INT,
Password char(15),
primary key (id);

create table Instrests(
id INT,

create table friendships(

esto se puede hacer con solo tres tablas

hasta ahora tengo esto hecho.

drop table users;
drop table intrest;
drop table friendships;

create table users(
id INT,
Fname char(15),
Lname char(15),
email char(20),
street char(15),
state char(2),
zip INT,
age INT,
gender char (2),
phone INT,
User_password char(15),
primary key (id)
foriegn key (intrest_id) references intrest(id)
);

create table Intrests(
id INT,
description char(30),
Primary key (id),
foreign key (users_id) references users(id)
);

create table User_intrest(
foreign key (user_id) references user(id),
foreign key (intrest_id) references intrest(id)
);


create friendships(
User_1_id INT,
User_2_id INT,
status Char(20),
foreign key (user_id) references user(id)
);

Respuestas a la pregunta(3)

Su respuesta a la pregunta