摘要:
增: insert into (1,2,3) values (a,b,c); 删: delete from student where id=1; 改: update student set name=‘去’,‘sex=男’ where id =1; 查: 多表查询 Select 字段 right、 阅读全文
摘要:
用户: system / sys 1.select * from dba_users; 显示所有用户 1.创建用户: create user A identified by 123456; 2.权限分配:DBA:所有全部resource:可以创建实体,不可以创建数据库connect :可以登录分配权 阅读全文
摘要:
十一、多表查询 (有关联) 1. select * from 表名1 别名1, 表名2 别名2 where 连接与查询条件 n个表,条件有n-1个 select * from stu, course; //两两的相积 select * from stu , course where stu.id = 阅读全文
摘要:
八、分组查询select 分组字段1,分组字段2 , 聚合函数() from 表名 group by 分组字段1,分组字段2 having 条件 order by 分组字段/聚合函数; select 分组字段1,分组字段2 , 聚合函数() from 表名 where 条件表达式 group by 阅读全文
摘要:
#需要导入的模块 import requests import json import pprint import random import time #请求链接 r = requests.get('https://api.bilibili.com/x/v2/reply?jsonp=jsonp&pn=1&type=1&oid=46445761&sort=0&_=1553736731025') d 阅读全文
摘要:
def MyMessage(name,age,where): print( "My name is :" +name.upper()+","+ "this yesr is :" +str(age)+" year old!"+ "come from :"+where+"." ) MyMessage("zhenghanqiao",3000,"guangxi") class Dog(): def __i 阅读全文