mysql 学习二...
时间:2010-08-19 来源:jiftlixu
创建数据库
create database if not exists test;
删除表的某一字段
ALTER TABLE `cdb` DROP COLUMN `column1`
删除存储过程
drop procedure if exists sp_test;
创建存储过程
相关阅读 更多 +
时间:2010-08-19 来源:jiftlixu
创建数据库
create database if not exists test;
删除表的某一字段
ALTER TABLE `cdb` DROP COLUMN `column1`
删除存储过程
drop procedure if exists sp_test;
创建存储过程