MYSQL入门总结

创建数据库及创建表 create schema/database ttest(名字); //创建数据库 create table ttest(建好的数据库名字).new_table(表名字) ( a int not null, b varchar(20) null, c char (30) null, primary key (a)); //这个主键要用括号括起来 1.show columns f
相关文章
相关标签/搜索