除了exists,先執(zhí)行子查詢,再外查詢 exists:相關(guān)子查詢,先執(zhí)行外查詢,再根據(jù)子查詢字段進(jìn)行過(guò)濾。
limit (page-1)*size,size
substr('helloworld',1,5) hello instr('helloworld','w') 6 LPAD(salary,10,'*') ****salary TRIM('H' from 'Helloworld') elloworld
insert into tableName( column1,column2,...) values(值1,...)
update student set age=18 where name='hwj'
/* 表數(shù)據(jù)刪除 */
# 創(chuàng)建 create table if not exists student(column1,...) # 修改 字段名 Alter table student change column 舊 新字段 # 修改表名 Alter table student rename to student1 # 修改字段類型和約束 Alter table tablename modify column column_name 約束 # 添加字段 Alter table 表名 Add column 字段; # 刪除字段 Alter table 表名 drop column 字段 # 刪除表 drop table if exists 表名
|
|