自学内容网 自学内容网

数据库01

创建表

table新建表

insert into 表名 values(‘’,‘’,‘’,‘’);

delete from  表名 where 条件  //删除某行

delete from 表名  //删除所有行

update 表名 set 要改的元素  where  条件

select *from 表名 //查找表中所有元素

select  列名 from 表名//查找表中的列

select *from 表名 where 条件  //查找当前表中所有符合条件的

select * from表名  order by  列名  desc从高到低/asc从低到高

select *from between 1and 2


原文地址:https://blog.csdn.net/zyq2217330101/article/details/142326471

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!