创建一个帐号,没密码 username是账户名,host是你想让他链接的IP地址也可以直接用%表示所有机器都可以外联
mysql>user mysql
mysql>update user set password=password(123456) where user='username'
更改密码,其实也可以在grant语句里面一句完成
grant all on *.* to 'username'@'host' IDENTIFIED BY (123456)
mysql>exit
#>mysqladmin -uxxxx -p reload
重新加载权限表
能实现,先左联 然后 unio all 然后右连吧SELECT a.列1,a,列2,,,,,,,, FROM a LEFT JOIN b ON a.id=b.id
->UNION
->SELECTa.列1,a,列2,,,,,,,, FROM a RIGHT JOIN b ON a.id=b.id
Mysql添加索引的方式有以下几种1. 在创建表的时候添加
CREATE TABLE customer(
id INT NOT NULL AUTO_INCREMENT, name VARCHAR(20), PRIMARY KEY(id) UNIQUE KEY `UK_student_name` (`name`) )ENGINE=INNODB DEFAULT CHARSET=utf8
2. 单独对表中的列创建索引
创建唯一索引:create unique index UK_student_name on student (name)
3. 对表中的列添加约束
alter table student add constraint uk_student_name unique (name)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)