记录一些比较容易忘记的sql语句
不定时更新整合
清空数据表
1.将整张数据表彻底清空(包括自增主键的重置)
truncate table table_name
2.只清空当前数据
delete from table_name
删除整张数据表
DROP TABLE table_name
更新数据表里的数据
update table_name
set property_name = new_value
where *** = ***
记录一些比较容易忘记的sql语句
不定时更新整合
1.将整张数据表彻底清空(包括自增主键的重置)
truncate table table_name
2.只清空当前数据
delete from table_name
DROP TABLE table_name
update table_name
set property_name = new_value
where *** = ***
本文标题:一些基本的SQL语句
本文链接:https://www.haomeiwen.com/subject/dtjmsttx.html
网友评论