sql注意

sql注意

1.create view时 在select语句中有两个约束:
    1).不能使用union操作。
    2).不能使用order by子句,但可以使用group by里的order by。    
2 在操作view时:
    1).多表视图不能使用delete
    2).除非底层表的非空列都在view里出现,否则不能使用insert(用distinct不能用)
    3).update只能更新同一个虚表的列

你可能感兴趣的:(sql注意)