摘要: JavaScript函数 一、命名函数 语法 : function functionName(parameter-list){ statements } 举例: <!DOCTYPE html><html><body> <script> hello('yeeku'); //定义一个函数hello,该函 阅读全文
posted @ 2019-01-25 16:32 刘建军 阅读(149) 评论(0) 推荐(0)
摘要: MySQL术语: Redundacncy(冗余):存储两次或多次数据,以便实现快速查询。 Primary Key(主键):主键是唯一的。表中每条记录的唯一标识。 Foreign Key(外键):用于连接两张表。 表的连接方式 内连接 外连接 自连接 数据准备 创建两张表:student表,colle 阅读全文
posted @ 2019-01-25 14:05 刘建军 阅读(2446) 评论(0) 推荐(0)