随笔分类 -  【Mysql】

如果哪天你失去了色彩,我愿守望着天空,寻找你的星座.....
【Mysql】drop
摘要:The DROP privilege enables youto drop (remove) existing databases, tables, and views.create database Susake;use Susake;create table Test(a int, b int);drop table Test;drop database Susake; 阅读全文

posted @ 2014-03-28 14:48 至死丶不渝 阅读(157) 评论(0) 推荐(0)

【Mysql】create
摘要:The CREATE privilege enablescreation of new databases and tables.create database Susake;use Susake;create table Test(a int, b int); 阅读全文

posted @ 2014-03-28 13:12 至死丶不渝 阅读(134) 评论(0) 推荐(0)

导航