Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-robot77 authored Aug 15, 2023
1 parent c6586a9 commit d384f5f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions SQL/ch2/insert-table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
CREATE TABLE users (
id BIGINT AUTO_INCREMENT PRIMARY KEY,
level ENUM('user', 'admin') NOT NULL DEFAULT 'user',
name VARCHAR(45) NOT NULL,
family VARCHAR(45) NOT NULL,
birth_date DATETIME
);

INSERT INTO users (level, name, family, birth_date)
VALUES
(DEFAULT, 'abolfazl', 'mohajeri', '1991-08-07 00:00:00'),
('admin', 'nima', 'heydarinasab', '1989-03-22 00:00:00'),
(DEFAULT, 'saleh', 'abednezhad', '1995-05-07 00:00:00');

0 comments on commit d384f5f

Please sign in to comment.