We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5cb95a commit fd847a0Copy full SHA for fd847a0
README.md
@@ -4,12 +4,9 @@ Sample program to know how we can interact with the SQL Database.
4
5
6
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
14
+1) id => bigint(20) => auto_increment (Primary Key)
+2) name => varchar(60)
+3) description => text
15
+all are default NULL
0 commit comments