Skip to content

Commit 4fb49ab

Browse files
authored
fix sql insert syntax (#28717)
* fix sql insert syntax
1 parent 34aa2d5 commit 4fb49ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/workers/tutorials/connect-to-turso-using-workers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ In the shell you just opened, paste in the following SQL:
9494

9595
```sql
9696
create table example_users (email text);
97-
insert into example_users values ("foo@bar.com");
97+
insert into example_users values ('foo@bar.com');
9898
```
9999

100100
If the SQL statements succeeded, there will be no output. Note that the trailing semi-colons (`;`) are necessary to terminate each SQL statement.

0 commit comments

Comments
 (0)