摘要:
<!DOCTYPE HTML> <html lang="zh-cn"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device- 阅读全文
摘要:
函数--获取年月日 2022-03-01 select date(to_timestamp(round(1646103144959/1000)) + interval '1 hour' * 8 ) --获取当前年份 thisyear:=(select to_char(to_timestamp(flo 阅读全文
摘要:
<!DOCTYPE HTML> <html lang="zh-cn"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device- 阅读全文
摘要:
//时间戳转换方法 date:时间戳数字 function formatDate(date) { var date = new Date(date); var YY = date.getFullYear() + '-'; var MM = (date.getMonth() + 1 < 10 ? '0 阅读全文