sql語句學習

2021-08-28 10:09:53 字數 856 閱讀 3654

1、distinct選取所有的值的時候不會出現重複的資料

select distinct user_name,user_age from user
2、查詢user_age不等於12的資料

select * from user where user_age <> 12
3、and和or在where子語句中把兩個或多個條件結合起來。如果需要兩個條件都成立就是用and如果只需要其中乙個條件成立就使用or

4、按照公升序排列user_id逆序排列user_age

select * from user order by user_id asc,user_age des
5、insert

insert into user(user_name) values('eva')
6、update

# 修改user_id為6的資料user_age為14

update user set user_age=14 where user_id=6

7、刪除表中的所有資料

delete from user

8、使用關鍵字join來連線兩張表

9、union

union操作符用於合併兩個或者多個select語句的結果集

請注意,union內部的select語句必須擁有相同數量的列。列也必須擁有相同的資料型別。同時,每條select語句中的列的順序必須相同。

sql語句學習!

把null值插入日期型字段需要使用帶引數的sql語句,示例如下 mycmd.parameters.add jyxmrq sqldbtype.datetime,8 if ds.tables 1 rows j 11 tostring else 2。不是字串,使相加的結果。declare i int se...

SQL語句學習

1.向表中新增新的字段 alter table table name add column name varchar2 20 not null 2.刪除表中的乙個字段 delete table table name column column name 3.修改表中的乙個欄位名 alter tabl...

學習SQL語句

1.資料庫的結構 乙個資料庫有一到多個表,每個表都有一到多個列組成。一般的select後都是列,from後面是表.select 列名稱 from 表名稱2.sql語句對大小寫不敏感。3.分號是分割每條資料庫語句的符號。sql語句分為資料操作語言dml和資料定義語言ddl。4.注意dml中的增刪改查,...