select 欄位名 from 表名 where 查詢條件;
表名:boys
查詢單個字段
select boysname from boys;
查詢多個字段select id,boysname from boys;
查詢所有字段select * from boys;
select 100;
select 'john';
select 100%50;
asselect 100 as 數字;
空格select 100 數字;
mysql中加號只作為運算子
select 100+90; # 190 兩個都是數值型,則做加法運算
select '123'+90; # 213 試圖轉換字元型為數值型,如果轉換成功則繼續做加法運算
select 'john' + 90; # 90 如果轉換失敗,則將字元型別轉換為0
select null + 10; # null 只要其中一方為null,則結果肯定為null
mysql基礎語法演示 mysql基礎語法
1 ddl 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...
mysql 語法入門 mysql基礎語法
1 dml 增刪改查 1 select 獲取資料 select from 表名 where 條件 2 update 更新資料 update 表名 set 欄位名 值,欄位名 值 where 條件 3 delete 刪除資料 delete from 表名 where 條件 4 insert into ...
mysql基礎語法
連線伺服器 mysql h host u user p 連線伺服器 建立資料庫 show databases 顯示當前伺服器上有什麼伺服器 use databasename 選擇資料庫 create database databasename 建立資料庫 建立表 show tables 顯示當前伺服...