Linux下MYSQL数据库的基本操作
摘要:
1.建立数据库: mysql> create database test; //建立一个名为"test"的数据库 2.建立数据库表: mysql> create table test -> (name char(16) not null, -> passwd char(16) ->); //建立一个 阅读全文
posted @ 2014-05-07 16:45 asif 阅读(1567) 评论(0) 推荐(0) 编辑