首页 > 数据库技术 > 详细

java & SQL

时间:2017-02-26 23:54:24      阅读:241      评论:0      收藏:0      [点我收藏+]

在cmd命令中,控制sql

大多数语句都要用分号结束。

SQL的关键字不区分大小写

SQL语言中,字符串的值是区分大小写的, 并且包含在单引号中。

SQL的判断是否相等的符合是直接一个 = ,而不是==

1、开启mysql服务

技术分享

2、登录mysql 

mysql -uroot -p

技术分享

3、输入use mysql;

4、创建用户名为scott,密码为tiger的账户,输入

create user ‘scott‘ @ ‘localhost‘ identified by ‘tiger‘;

5、赋予特权给scott,输入

grant select, insert,  update, delete, create, create view, drop, execute, references on *.* to ‘scott‘@‘localhost‘;

6、如果希望该帐号可以从任意的IP地址来远程访问,输入

grant all privileges on *.* to ‘scott‘@‘%‘ identified by ‘tiger‘;

7、如果希望该帐号从一个特定的IP地址可以进行远程访问,输入

grant all privileges on *.* ‘scott‘@‘ipAddress‘ identified by ‘tiger‘;

8、登录,mysql -uscott -ptiger

技术分享

 

然后创建一个数据库,名为javabook,create database javabook;

转到javabook这个数据库,use javabook;

创建一个表,

create table Course (
	courseId char(5),
	subjectId char(4) not null,
	courseNumber integer,
	title varchar(50) not null,
	numOfCredits integer,
	primary key (courseId)
);

 

 

 插入东西:

insert into Course (courseId, subjectId, courseNumber, title, numOfCredits)
values (‘11113‘, ‘CSCI‘, ‘3720‘, ‘Database System‘, 3);

修改:

update Course
set numOfCredits = 4
where title = ‘Database Systems‘;

删除表中某一个

delete from Course
where title = ‘Database Systems‘;

 删除表中的所有东西,不代表删除了整个表

delete from Course;

 

删除整个表::

drop table Course;

同理删除整个数据库:

drop database javabook;

  

 

 搜索表中的东西

 select courseId, subjectId, courseNumber
 from Course
 where courseId = ‘11113‘;

技术分享

 

java & SQL

原文:http://www.cnblogs.com/liuweimingcprogram/p/6457007.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!