数据库学习笔记--经常使用SQL语句

经常使用SQL语句 一、建立数据表 create table tablename(col1 type1 [not null] [primary key], col2 type [not null],...) 二、删除数据表 drop table tablename 三、插入记录 insert into tablename(field1,field2) values(value1,value2) 四
相关文章
相关标签/搜索