然后,再使用这些数据库服务器的客户端工具,在数据库中创建数据表。
使用create命令建立mysql数据库:新建数据库例:
1.以mysql最高管理员登录,在mysql>create database XXXXX
xxxxx即为数据库名.
2.在mysql中如何创建用户,使该用户对该数据库有完全权限.
3.可 以 用 GRANT 命 令 , 格 式 如 下 :
GRANT 许可权 ON 数据库名.表名 TO 新用户名@主机名 IDENTIFIED BY '密码'
grant all on husidb.* to john@localhost identified by ’201314’
注:每一句mysql语句后面都跟有号.注意大小写.
这是我在linux下命令,跟Ubuntu应该一样!你试试看!查看当前用户表:list tables
查看数据库定义所有表:list tables for all
查看指定模式表:list tables for schema <schema name>
查看当前用户名为模式表:list tables for schema
查看表结构:describe table <tablename>
创建:create table <schema name>.<table name>(<column name><type>) in <tablespace name>
例如:create table agent.test (id integer, name varchar(10)) in users
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)