diff --git a/content/01-getting-started/02-setup-prisma/02-start-from-scratch-sql.mdx b/content/01-getting-started/02-setup-prisma/02-start-from-scratch-sql.mdx
index f61bd7a2f7..77601b7de9 100644
--- a/content/01-getting-started/02-setup-prisma/02-start-from-scratch-sql.mdx
+++ b/content/01-getting-started/02-setup-prisma/02-start-from-scratch-sql.mdx
@@ -104,6 +104,7 @@ This command created a new directory called `prisma` with the following contents
To connect your database, you need to set the `url` field of the `datasource` block in your Prisma schema to your database [connection URL](../../reference/tools-and-interfaces/database-connectors/connection-urls):
+
```prisma
datasource postgresql {
@@ -329,8 +330,6 @@ You can create the tables using any MySQL client of your choice. If you're using
mysql < schema.sql
```
-Similar to before, you need to replace the all-uppercase placeholders with your database credentials, e.g.:
-
Great, you now created three tables in your database
Expand for a graphical overview of the tables
@@ -587,8 +586,6 @@ npx ts-node index.ts
-
-
Run the code with this command: