SQL标准格式

Insert into [(column name list)] values(value list)
Update set column name=value[,…] [where condition]
Delete from [where condition]

Select column list from
[inner| left | right join table2 on condition […]]
[where condition]
[group by column [having condition]]
[order by column asc|desc …]

发布了25 篇原创文章 · 获赞 5 · 访问量 1895

猜你喜欢

转载自blog.csdn.net/DoMyBestintheworld/article/details/103795234