>  기사  >  데이터 베이스  >  mysql,oracle数据库一些基本操作_MySQL

mysql,oracle数据库一些基本操作_MySQL

WBOY
WBOY원래의
2016-06-01 13:01:091261검색

这是自己在网上收集和自己平时使用的一下命令和语句(适合新手学习),如有不对还请大家指出来

一.mysql(请注意命令之间存在空格)

cmd命令启动/关闭数据库:net start/stop mysql

打开mysql进入到命令行:mysql -u+用户名 -p+密码

首先我们在test数据库中来创建一个简单的user表:

use test;//使用test数据库

drop table if exists user;//如果存在user表就删除user表

create table user(

uid int primary key auto_increment,

uname varchar(8) not null,

sex char(2) default '男'

);

show tables from test; //查看所有表

desc user / show columns from user; //两者都能查看表结构

1.增加列(alter table + 表名 + add 列名 列类型 列参数):

例:alter table user add birth date not null default '0000-00-00';

插入列默认是表最后。如果想要指定插入列位置,则需要关键字first,after

alter table user add age int not null default '0' first /after uid;

2.修改列(

①alter table + 表名 + modify + 列名 + 新列类型 + 新列参数 (只修改类型和参数);

②alter table + 表名 + change + 旧列名 + 新列名 + 新列类型 + 新列参数(修改列名,类型和参数);

):

例: ① alter table user modify age varchar(2) not null;

② alter table user change age info text;

3.删除列(alter table + 表名 + drop + 列名):

例: alter table user drop info;

4.查看创建代码(show create table + 表名):

例: show create table user;

二.oracle

cmd命令启动/关闭监听器: lsnrctl start/stop

cmd命令启动/关闭服务:net start/stop oracleserviceorcl

待奉上...

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.