摘要: #创建数据库 | 语法 | 参数 | 参数作用 | | | | | | create database db_name | with | | | | owner | | | | template | 使用数据库模板名 | | | encoding | | | | allowconn | 默认为tru 阅读全文
posted @ 2022-12-10 10:29 braveman1021 阅读(142) 评论(0) 推荐(0)
摘要: | 名称 |语法 |使用 | | | | | | select | | | | where | | | |fetch|fetch rows_count rows only| | | order by | | | | limit | | | | offset | OFFSET skipped_rows 阅读全文
posted @ 2022-12-09 16:19 braveman1021 阅读(51) 评论(0) 推荐(0)
摘要: 斜体粗体 *斜体* **粗体** ***加粗斜体*** ~~删除线~~ 分级标题 # 一级标题 ##二级标题... 超链接 1.行内式 [连接文字](链接地址) 无序列表 - 列表一 -列表二 有序列表 1. 2. 插入图像 ![img name](地址) 表格 学号|姓名|分数 -|-|- 小明| 阅读全文
posted @ 2022-12-09 10:59 braveman1021 阅读(19) 评论(0) 推荐(0)
摘要: 1.git操作 git status 查看仓库的状态 git init 初始化git仓库 git add 将文件添加到git(缓冲区) git commit -m "文件" 提交文件到git仓库 -m显示提交信息 git log 打印日志 git branch (-d) 查看git仓库分支情况,gi 阅读全文
posted @ 2022-12-09 09:35 braveman1021 阅读(31) 评论(0) 推荐(0)
摘要: 1.字符串函数 函数返回类型描述例子结果 string||string text 字符串连接 length(string) int string中字符的数目 length(‘jose’) 4 position(substring in string) int 指定的子字符串的位置 position( 阅读全文
posted @ 2022-12-06 10:07 braveman1021 阅读(486) 评论(0) 推荐(0)