10 2021 档案

摘要:Linux命令大全(手册) – 真正好用的Linux命令在线查询网站 (linuxcool.com) 常用命令: 返回系统根目录: cd / 返回当前用户Home目录: cd ~ 查询当前目录下文件:ls 查询日志:tail -f 文件名 阅读全文
posted @ 2021-10-20 15:21 *球球* 阅读(30) 评论(0) 推荐(0) 编辑
摘要:1、cd,切换当前目录 语法:cd [选项] 一个目录名称 选项:/d,表示切驱动器和目录,即没有该选项则只能在同驱动器内切换当前目录 补充:可以通过"驱动器名:"来只切换驱动器不切换当前目录。 文件中有空格,则该路径用双引号全部引出。 2、其他命令: cd、copy、del、dir、mkdir、m 阅读全文
posted @ 2021-10-20 15:12 *球球* 编辑
摘要:新建表: create table t3( id int not null primary key, # id为主键,且不能为空 name char(20) not null ); 语法:语法 create table 表名称( 字段名 字段名类型 字段描述符,字段名 字段类型 字段描述符); 删除 阅读全文
posted @ 2021-10-20 14:01 *球球* 阅读(148) 评论(0) 推荐(0) 编辑