mysql一些语句 发表于 2017-10-28 分类于 数据库 获取一张表的所有字段名select COLUMN_NAME from information_schema.columns where table_name='TableName' 对一个数据库进行赋权grant all privileges on database.* to username@ip identified by 'passwd' flush privileges