练习SQL2008语句笔记

CREATE TABLE T_Person3(Id int NOT NULL,Name nvarchar(50),Age int NULL)
DROP TABLE T_Person3
INSERT INTO Person_1(Number,Name,Age) VALUES(4,'xxxxxxx',20)
SELECT newid()

UPDATE Person_1 set Age=30
UPDATE Person_1 set Name='liming' where Age>=30

select * from Person_1
select Name from Person_1
select * from Person_1 where Age>20

select GETDATE()
select @@version
select 100-20 as sub

select COUNT(*) from Person_1
select MAX(Number) from Person_1
select AVG(Number) from Person_1

select * from Person_1 order by Age
select * from Person_1 order by Age ,Name DESC

select * from Person_1 where Name LIKE '_ieniyimiao'
select * from Person_1 where Name LIKE '%i%'

select null+1

select * from Person_1 where Name is not null
select * from Person_1 where Age in(20,18,30)
select * from Person_1 where Age between 1 and 22

select Age,count(*) from Person_1  group by Age

select top 3 *from Person_1 order by Age DESC 

时间: 2024-10-10 02:49:55

练习SQL2008语句笔记的相关文章

MSSQL 语句笔记

建库 CREATE DATABASE 数据库名 ON[PRIMARY] --默认属于PRIMARY主文件组,可省略 ( NAME='', --主数据文件的逻辑名 名称 FILEAME='', --主数据文件的物理名 路径 .mdf 次数据库为.ndf SIZE=5mb, --主数据文件初始大小 MASSIZE=100mb, --主数据文件增长最大值 FILEGROETH=15% --主数据文件增长率 ) LOG ON ( NAME='', --日志文件的逻辑名 FILEAME='', --日志文

mysql 语句笔记

1. 查询某个表中所有非空字段名 SELECT `COLUMN_NAME` FROM `information_schema`.`COLUMNS` WHERE `IS_NULLABLE` = 'No' AND `TABLE_NAME` = 'feed' AND `TABLE_SCHEMA` = 'prodb_mgmt' 2.   查看一个表的所有字段 describe <表名> 3.  查看表大小  http://stackoverflow.com/questions/9620198/how-

sql插入语句笔记

使用INSERT插入数据行 [一次插入一行数据] 全写: INSERT  INTO  renshi  (name, sex, age ,tel) VALUES  ('胡大姐','女','35','136334***12') 简写: INSERT    renshi VALUES ('胡大姐','女','35','136334***12') 为缺省值列插入数据 INSERT   INTO  renshi VALUES ('胡大姐'','女','35',DEFAULT) 显示结果:  胡大姐  女 

SQL注入常用语句{笔记}

example1: select * from users where username='$username' and password='$password' test data: $username = 1' or '1'='1 $password=1' or '1'='1 select * from users where username='1' or '1'='1' and password='1' or '1'='1' 如果参数值是GET方法传递到服务器,则访问请求是: http:

python循环语句笔记

while 循环语句 while 语句用于循环执行程序,即在某条件下,循环执行某段程序,以处理需要重复处理的相同任务.其基本形式为: while 判断条件: 执行语句-- 执行语句可以是单个语句或语句块.判断条件可以是任何表达式,任何非零.或非空(null)的值均为true. 当判断条件假false时,循环结束. while 语句时还有另外两个重要的命令 continue,break 来跳过循环,continue 用于跳过该次循环,break 则是用于退出循环,此外"判断条件"还可以是

leeson_020 分支语句 笔记

课堂代码: #include <stdio.h> int main() { //1 输入年龄 int age = 0; printf("Your Age:"); while (scanf_s("%d", &age)==0) { printf("Input Age(Number)\n"); printf("Your Age:"); //fflush(stdin); 大多编译器不支持fflush,在大多数情况下

SQL语句笔记

1:查询数据库表中日期降序排列后的第二大日期(昨天) SELECT yestoday FROM  ( SELECT ROWNUM RECNO, a.* FROM ( select  distinct to_char(DATA_DATE,'yyyy-mm-dd') yestoday from TBL_INT_DUAL where count_time_type='2' order by to_char(DATA_DATE,'yyyy-mm-dd') desc  ) a WHERE ROWNUM <

[小问题笔记(七)] jQuery 常用语句笔记(隐藏/显示/禁用标签 等)

隐藏/显示标签 $("#div1").css("display", "none");$("#div2").css("display", "block"); 禁用/取消禁用 $("#div1").attr("disabled", "disabled"); $("#div1").attr("disabl

mysql语句笔记

CREATE TABLE `player` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` char(20) NOT NULL DEFAULT '' COMMENT '站点名称', `area` varchar(255) NOT NULL DEFAULT '', `alexa` int(11) NOT NULL DEFAULT '0' COMMENT 'Alexa 排名', `team` char(10) NOT NULL DEFAULT '' CO