摘要:
字符型简介 固定长度字符串-char(n) n代表字符串的长度,当实际长度不足时,利用空格在右端补齐,n的最大值不能大于2000。所以只要是固定长度的字符串,他的length(值)的长度总为n varchar(n) 可变长度字符串,当实际长度不足时,不使用空格进行补充,同样长度也不许超出n。当作为列 阅读全文
摘要:
插入数据-insert 单条插入 insert into 表名 (列1,列2...)values(值1,值2...) 批量插入 insert into c_student(student_id,student_name) select student_id,student_name from stu 阅读全文
摘要:
查询 select employee_name from employees where 子句 select employee_name from employees where employee_age>25 根据2个数据表查询 select e.employee,s.salary from em 阅读全文