摘要:
get是通过url传递表单值,post通过url看不到表单域的值;get传递的数据量是有限的,如果要传递大数据量不能用get,比如type= “file”上传文章、type= “password”传递密码或者<textarea>发表大段文章,post则没有这个限制;post会有浏览器提示重新提交表单的问题,get则没有。对于post的表单重新敲地址栏在刷新就不会提示重新提交了,因为重新敲地址栏就没有偷偷提交的数据了。 阅读全文
posted @ 2012-06-06 09:40
算盘
阅读(152)
评论(0)
推荐(0)
摘要:
INSERT...SELECT 语句语法insert table_name [column_list]select column_listfrom table_listwhere search_condirionsINSERT...SELECT 语句是将已有的数据插入到已有的数据表里面select...into 语句语法select <select_list> into new_tablefrom table_name where <search_condition>select...into 语句是新建一个数据表 阅读全文
posted @ 2012-06-06 09:31
算盘
阅读(178)
评论(0)
推荐(0)