( 不一定 )
域名 和 ip 可能是 多对一, 多个域名指向同一个 ip地址
域名 和 ip 也可能是 一对多, 通过域名解析得到一个ip地址(主服务器), 通过主服务器进行分发到其他分服务器...2-表单提交 (get, post)
前端页面:
action : 指定提交的地址
method : 指定提交方式 (get/post)
name:指定给表单元素, 将来后台通过 name...1, 字段2, .... ) values (值1, 值2, .... )
删除
delete from 表名 where id = 10;
修改
update 表名 set 字段...默认升序
order by 字段 desc 降序
新添加的数据显示在第一条
order by id desc;
联合查询
select 字段列表 from 表A join 表 B on...ajax({
type: "post",
url: "地址",
data: formData,
contentType: false, // 不设置请求头
processData: