如何授予当前MySQL DB的特定权限?

时间:2017-01-01 10:26:02

标签: mysql permissions

是否可以不设置我明确授予权限的数据库名称?

我想做这样的事情:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath: (NSIndexPath *)indexPath {

 NSLog(@"selected tableview row is %ld",(long)indexPath.row);
}

而不是:

USE db1;
GRANT SELECT ON * TO 'user'@'host';

0 个答案:

没有答案