查看当前的数据库:show databases;
进入某一个特定的数据库:use myweb;
查看当前数据库的所有表:show tables;
查询命令:select * from lost_type;
删除命令:delete from lost_type;(注意没有*号)
查看当前的数据库:show databases;
进入某一个特定的数据库:use myweb;
查看当前数据库的所有表:show tables;
查询命令:select * from lost_type;
删除命令:delete from lost_type;(注意没有*号)