Skip to content

Commit c7937df

Browse files
committed
fix formatting issues
1 parent c2bc56d commit c7937df

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

module2-database-technologies/r2.2-sql-queries/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ TABLE` statement. Note that every column has a data type and can also be given a
1313
automatically generated the IDs; when inserting a row, you do not need to
1414
provide the ID, it is automatically generated by incrementing the previous ID. We will see this in our example queries later. `NOT NULL` means that the user cannot provide a `NULL` value for values in this column. `PRIMARY KEY` is used to denote a column as the primary key field, and it is often used in conjunction with `AUTO INCREMENT` for databases with numeric IDs.
1515

16-
There are many options when creating columns. Refer to the [`CREATE TABLE`
17-
documentation](https://dev.mysql.com/doc/refman/8.0/en/create-table.html).
16+
There are many options when creating columns. Refer to the `CREATE TABLE` [documentation](https://dev.mysql.com/doc/refman/8.0/en/create-table.html).
1817
```sql
1918
CREATE TABLE IF NOT EXISTS customer (
2019
task_id INT AUTO_INCREMENT PRIMARY KEY,

module2-database-technologies/r3.2-querying-in-mongodb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Refer to the [official documentation for
2424
querying](https://docs.mongodb.com/manual/tutorial/query-documents/). Select
2525
JavaScript in the top-right.
2626

27-
Additionally, [MongoDB Compass] is a graphical interface that can be used to visually run
27+
Additionally, [MongoDB Compass](https://www.mongodb.com/products/compass) is a graphical interface that can be used to visually run
2828
Mongo queries. There is no difference other than convenience. It is useful to
2929
know how to query both in command-line and graphically.
3030

0 commit comments

Comments
 (0)