insert into BrewEvent (customerId,machineId,dateTime,waterUsed) value ('710000200307132686','310000198609099995','2023-06-08 05:43:11','7.23'); 报错:Incorrect syntax near ')'. Expecting '(', DEFAULT, EXECUTE, SELECT, or VALUES.
时间: 2023-08-20 19:56:55 浏览: 126
SQL-for-Data-Science:数据科学SQL
您好!根据您提供的信息,我注意到在您的 SQL 插入语句中存在一个问题。请注意,正确的关键字应为 `VALUES` 而不是 `VALUE`。正确的插入语句如下所示:
```sql
INSERT INTO BrewEvent (customerId, machineId, dateTime, waterUsed) VALUES ('710000200307132686', '310000198609099995', '2023-06-08 05:43:11', '7.23');
```
请尝试使用这个修正后的语句,看看是否能够成功执行插入操作。如有其他问题,请随时提问!
阅读全文