SQL Server 數(shù)據(jù)庫基本操作語句總結(jié),需要的朋友可以參考一下 復(fù)制代碼代碼如下: --sql基本操作 --創(chuàng)建數(shù)據(jù)庫 create database Studets --創(chuàng)建表 create table student ( sno char(5), sname char(20), ssex char(2), sage smallint, sdept char(15) ) ...
www.dbjr.com.cn/article/367...htm 2025-6-11