真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

數(shù)據(jù)庫中怎么創(chuàng)建數(shù)據(jù)表

這篇文章主要介紹了數(shù)據(jù)庫中怎么創(chuàng)建數(shù)據(jù)表的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇數(shù)據(jù)庫中怎么創(chuàng)建數(shù)據(jù)表文章都會(huì)有所收獲,下面我們一起來看看吧。

創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),富錦企業(yè)網(wǎng)站建設(shè),富錦品牌網(wǎng)站建設(shè),網(wǎng)站定制,富錦網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,富錦網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

創(chuàng)建數(shù)據(jù)表

創(chuàng)建數(shù)據(jù)表使用 "CREATE TABLE" 語句,創(chuàng)建數(shù)據(jù)表前,需要確保數(shù)據(jù)庫已存在,以下創(chuàng)建一個(gè)名為 sites 的數(shù)據(jù)表:

demo_MySQL_test.py:

importmysql.connector 

mydb =mysql.connector.connect(  

host="localhost",  

user="root",  

passwd="123456",  

database="runoob_db"

)

mycursor =mydb.cursor() 

mycursor.execute("CREATE TABLE sites (name VARCHAR(255), url VARCHAR(255))")

執(zhí)行成功后,我們可以看到數(shù)據(jù)庫創(chuàng)建的數(shù)據(jù)表 sites,字段為 name 和 url。

數(shù)據(jù)庫中怎么創(chuàng)建數(shù)據(jù)表

我們也可以使用 "SHOW TABLES" 語句來查看數(shù)據(jù)表是否已存在:

demo_mysql_test.py:

importmysql.connector 

mydb =mysql.connector.connect(  

host="localhost",  

user="root",  

passwd="123456",  

database="runoob_db"

)

mycursor =mydb.cursor() 

mycursor.execute("SHOW TABLES") 

forxinmycursor:  

print(x)

關(guān)于“數(shù)據(jù)庫中怎么創(chuàng)建數(shù)據(jù)表”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“數(shù)據(jù)庫中怎么創(chuàng)建數(shù)據(jù)表”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


新聞標(biāo)題:數(shù)據(jù)庫中怎么創(chuàng)建數(shù)據(jù)表
當(dāng)前網(wǎng)址:http://weahome.cn/article/gpphsd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部