Skip to content

Commit fd847a0

Browse files
Update README.md
1 parent c5cb95a commit fd847a0

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,9 @@ Sample program to know how we can interact with the SQL Database.
44

55

66
mysql> desc task;
7-
+-------------+-------------+------+-----+---------+----------------+
8-
| Field | Type | Null | Key | Default | Extra |
9-
+-------------+-------------+------+-----+---------+----------------+
10-
| id | bigint(20) | NO | PRI | NULL | auto_increment |
11-
| name | varchar(60) | NO | | NULL | |
12-
| description | text | NO | | NULL | |
13-
+-------------+-------------+------+-----+---------+----------------+
147

8+
1) id => bigint(20) => auto_increment (Primary Key)
9+
2) name => varchar(60)
10+
3) description => text
1511

12+
all are default NULL

0 commit comments

Comments
 (0)