- 相關(guān)推薦
工作中學到的知識
數(shù)據(jù)庫的關(guān)鍵字查詢:
Select *from 表名 where concat (‘字段名’,‘字段名’····)like 關(guān)鍵字 數(shù)據(jù)庫更新使用update
Update 表名 set 字段名=newvalue where 條件 注:若不加條件則會更新整個列的數(shù)據(jù) updatet_payusersetmoney=299048whereuserName='哈呵';
條件
數(shù)據(jù)庫表的左右聯(lián)接
左聯(lián)接: select *from table a left join table b;
on a.ID=b.ID
右聯(lián)接: select *from table a right join table b;
on a.ID=b.ID
創(chuàng)建數(shù)據(jù)庫 create database 數(shù)據(jù)庫名
創(chuàng)建表 create table 表名
刪除數(shù)據(jù)庫 drop database 數(shù)據(jù)庫名
刪除表 drop table 表名
刪除表中的數(shù)據(jù) delete from 表名where 條件
查找表中的所有的數(shù)據(jù) select * from 表名 where 條件 注 * 表示所有的意思 查找表中某個字段的信息
Select 字段名 from表名 where 條件 注 這里的字段名就是要查詢的字段 向表中插入數(shù)據(jù)
Insert into 表名(字段名1,字段名2···字段名n) values(值1,值2,···值n)
【工作中學到的知識】相關(guān)文章:
我學到了作文08-30
我從生活那里學到的06-30
淺談圖書館工作中的知識產(chǎn)權(quán)保護問題04-29
我從生活那里學到的作文03-06
從小學到初中作文04-30
從小學到初中作文04-30
我從生活那里學到的作文03-06
我在報刊中學到語文04-26
活到老 學到老05-01
我從生活中學到了語文04-29