1. 程式人生 > >SQL Server資料庫————增刪改查

SQL Server資料庫————增刪改查

--增刪改查
--
insert into 表名(列名) value(值列表) -- delect from 表名 where 條件 -- update 表名 set 列名=值1,列名2=值2 where 條件 -- select 列名1,列名2,...from 表名 where 條件 group by 列名 having 集合函式條件 order by 列名