操作方法
数据库的查询语句 select 字段1 , 字段2 from table_name 例 : select id,username from mytable where id=1 order by desc。
数据库的删除语句 delete from table_name where。
数据库的修改语句 alter table t1(表名) alter column a(字段名) text(50)(字段类型)。
数据库的增加语句 alter table table1(表名)add No_id(字段名) char(12)(字段类型) t null | null UNIQUE after '字符' 在制定字段后面添加 。