Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 87b118d

Browse files
committed
highlighting and alignment
1 parent 87ed071 commit 87b118d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Week1/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ his 24th birthday works in Facebook and lives in Redmond.
9494
* mysql: monitor / terminal / client (to connect to the server and execute stuff)
9595
* mysqladmin: Administering a MySQL Server
9696

97-
### Create Table in MySQL
97+
### Create a table in MySQL
9898

9999
#### Collection of rows and columns
100100
#### SYNTAX
@@ -107,7 +107,7 @@ CREATE TABLE table_name (column_name, column_type [, column2_name, column2_type]
107107
* BLOB (LOAD_FILE(filename))
108108

109109

110-
### Fill up the table in MySQL: INSERT rows
110+
### Fill up a table in MySQL: INSERT rows
111111
A row (aka record or tuple) represents a single, implicitly structured data item in the table.
112112

113113
#### SYNTAX
@@ -118,7 +118,7 @@ INSERT INTO table_name VALUES(value1, value2 [,value3,...]);
118118
* INSERT INTO table_name (column names) VALUES(..values...)
119119
* INSERT INTO table_name SET column_name = {expr | DEFAULT}
120120

121-
### See the content : SELECT
121+
### See the content of a table in MySQL: SELECT
122122

123123
#### SYNTAX
124124
```

0 commit comments

Comments
 (0)