牛客251960512号
牛客251960512号
全部文章
分类
markdown(1)
MySQL(15)
numpy(3)
Obsidian(6)
pandas(6)
PPT(1)
Pyhon面向对象(1)
Python基础语法(60)
Python数据分析与展示(11)
python自动化(2)
Tableau(17)
可视化(3)
未归档(1)
百度(1)
系统(1)
系统问题(1)
题解(40)
归档
标签
去牛客网
登录
/
注册
心际花园
编程就像一个迷宫,有无穷无尽的歧路,在其中的体验是有趣的。
全部文章
(共163篇)
题解 | #将titles_test表名修改为titles_2017#
mysql的代码是 alter table titles_test rename titles_2017 sqlite的代码是 alter table 'titles_test' rename to 'titles_2017'
Mysql
2021-10-13
0
426
题解 | #获取Employees中的first_name#
select first_name from employees order by right(first_name,2) 注意切换数据库为Mysql
Mysql
2021-10-12
0
307
题解 | #查找所有已经分配部门的员工的last_name和first_name以及dept_no#
select em.last_name,em.first_name, de.dept_no from employees as em join dept_emp as de on em.emp_no = de.emp_no where de.emp_no is not null
Sqlite
2021-10-12
2
240
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页