從資料庫中刪除資料 delete
插入資料 insert into
建立新資料庫 create database
修改資料庫 alter database
建立新錶 create table
變更資料庫表 alter table
刪除表
drop table
建立索引 create index
刪除索引 drop index
查詢所有列 select * from table
查詢列中不同值 select distinct name from table
select * from table where city = 'beijing'
order by 欄位名 預設公升序(desc 降序)
update person set address = 'zhengzhou', city = 'beijing' where lastname = 'xiaocao'
delete from person where lastname = 'xiaocao'
select * from persons where lastname in('adms','carter');
select column_name(s) from table_name where column_name between value1 and value2
SQL基礎語句
一.資料庫查詢語句 select 1.查詢所有資料 select from 表名 select from exam books 2.按照一定的條件查詢 select from 表名 where 條件 select from exam books where id 20 3.範圍條件查詢 select...
SQL基礎語句
1.1.1dml 資料操作語言 1.1.2 ddl 資料定義語言 select update delete insert 1.2.1 select語法a.查詢所有 select from 表名 b.查詢列 select 列名 from 表名 注意 查詢列名時,列名用逗號隔開,最後的列名不要加逗號1....
SQL基礎語句
select 語句用於從資料庫中選取資料。結果被儲存在乙個結果表中,稱為結果集。select column name,column name from table name 與select from table name 在表中,乙個列可能會包含多個重複值,有時您也許希望僅僅列出不同 distinc...