数据库
一星一辰
这个作者很懒,什么都没留下…
展开
-
数据库查询---指定查询某年某月
目录postgresmysqlpostgres使用to_char函数,将日期转换为需要的格式select * from tab where to_char(d,‘yyyy-mm’)=‘2020-07’;to_char函数具体可参考:to_char()mysql1、使用year和month函数select * from table_date where year(date)=‘2020’ and month(date)=‘07’2、使用date_format函数select * from t原创 2020-07-20 21:21:55 · 2315 阅读 · 0 评论 -
SQL Server登陆问题
SQL Server使用教程1.用户名与密码SQL Server的默认用户名为:sa,密码为安装SQL Server时设置的密码如果忘记密码可以选择Windows身份验证,然后修改密码...原创 2019-09-19 23:03:26 · 3224 阅读 · 1 评论 -
Mysql知识点
常用Mysql语句:show databases;查询所有数据库use database;使用某数据库show tables;查询该数据库内的所有表describe table;查询表的结构select name from table where …inset into table [column 1,column 2,…] values (value 1,value 2,…);UPDATE table SET column 1 = value 1,column 2 = value 2,…原创 2020-05-26 16:06:07 · 140 阅读 · 0 评论