sql語句的使用
id name
1 a
2 b
3 c
1 a
2 b
3 c
以下的`sql語句都以上面表mytable為準:
1、查詢id=1,3記錄的所有數(shù)據(jù)
復制代碼 代碼如下:
select * from mytable where id in(1,3)
2、刪除id重復的數(shù)據(jù),表中數(shù)據(jù)只剩下id=1,2,3的所有數(shù)據(jù)
復制代碼 代碼如下:
select * into # from mytable
truncate table mytable
table select distinct * from #
select * from table
#
3、創(chuàng)建一個新表 films_recent ,它的值包含來自表films
復制代碼 代碼如下:
SELECT * INTO films_recent FROM films
【sql語句的使用】相關文章:
2.Yii使用migrate命令執(zhí)行sql語句方法
3.SQL語句的功能