我正在尝试使用SELECT UUID()
INSIDE插入查询。
这是我的uery
INSERT INTO `posts`(`post_id`, `user_id`, `content`, `time`) VALUES (SELECT uuid(),1,'my content',mytime)
我收到错误a comma or a closing bracket was expected mysql near uuid
答案 0 :(得分:6)
uuid
是一个函数,您可以单独使用而无需编写select。
INSERT INTO `posts`(`post_id`, `user_id`, `content`, `time`) VALUES (uuid(),1,'my content',mytime)