If you are looking to learn TensorFlow, don't miss the core TensorFlow documentation which is largely runnable code. Those notebooks can be opened in Colab from tensorflow.org.
CREATE TABLE users (id INT AUTO_INCREMENT NOT NULL, profile INT DEFAULT NULL, friend INT DEFAULT NULL, address INT DEFAULT NULL, name VARCHAR(255) NOT NULL, password VARCHAR(255) NOT NULL, email ...