在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‘;
原文:http://www.cnblogs.com/liuweimingcprogram/p/6457007.html