摘要:
添加表: create database test 删除表: drop database test 使用test: use test 创建表格: create table stu : ( id int primary key' sex bit' age int' name nvarchar(50) 阅读全文
摘要:
use School--1、 查询Student表中的所有记录的Sname、Ssex和Class列。select Sname,Ssex,class from Student--2、 查询教师所有的单位即不重复的Depart列。select distinct Depart from Teacher-- 阅读全文
摘要:
SQL语句 create database ttext --创建数据库 drop database ttext --删除数据库 go 指先执行上面的,再执行下面的,如果不加全部执行 use ttext 在这个文件夹中 create table stude --创建表 ,stude ( id int 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ConsoleApplication3{ class P 阅读全文