create postgres database
sudo -u postgres psql
postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
create postgres database
sudo -u postgres psql
postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;
create database mysql
CREATE DATABASE `mydb`;
CREATE TABLE `my_table`
(
my_table_id INT AUTO_INCREMENT,
my_table_name VARCHAR(30) NOT NULL,
my_foreign_key INT NOT NULL,
my_tb_created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
my_tb_updated TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, ,
# Any other properties here
PRIMARY KEY(my_table_id),
CONSTRAINT fk_name_of_parent_table
FOREIGN KEY(my_foreign_key) REFERENCES parent_table(parent_table_column)
);
SHOW DATABASES;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us