grant all privileges on Student,Course to 123;提示逗号附近有语法错误怎么回事啊?

求解答
图片说明
grant all privileges on Student,Course to 123;
消息 102,级别 15,状态 1,第 1 行
“,”附近有语法错误。

这条语句在Oracle上是能运行的,但Mysql不支持这种写法
on的后面只能接一个对象,也就是说只能分别授权。
grant all privileges on Student to 123;
grant all privileges on Course to 123;

是的,我也问老师了,在msSQL上只能一个个的。