We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19024bd commit 3f533f5Copy full SHA for 3f533f5
docs/howto/embedding.md
@@ -26,7 +26,7 @@ Here's how we'd usually do that:
26
SELECT students.*, test_scores.*
27
FROM students
28
JOIN test_scores ON test_scores.student_id = students.id
29
-WHERE students.id = ?;
+WHERE students.id = $1;
30
```
31
32
When using Go, sqlc will produce a struct like this:
@@ -50,7 +50,7 @@ flattened list of columns.
50
SELECT sqlc.embed(students), sqlc.embed(test_scores)
51
52
53
54
55
56
0 commit comments