2018年12月4日

外键、主键

摘要: 1 --查询外键约束名 2 --SELECT name 3 -- FROM sys.foreign_key_columns f 4 -- JOIN sys.objects o 5 -- ON f.constraint_object_id = o.object_id 6 -- WHERE f.parent_object_id = OBJECT_ID('表名'); 阅读全文

posted @ 2018-12-04 22:17 cltt 阅读(133) 评论(0) 推荐(0) 编辑

四则运算

摘要: 1 print(2+3) 2 print(2-3) 3 print(2*3) 4 print(2/3) 5 print(2//3) 6 print(2%3) 7 8 5 9 -1 10 6 11 0.6666666666666666 12 0 13 2 a = input() x = eval(a) 阅读全文

posted @ 2018-12-04 15:46 cltt 阅读(77) 评论(0) 推荐(0) 编辑

计数原理

摘要: //cf 615D D. Multipliers time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output //cf 615D D. Mu 阅读全文

posted @ 2018-12-04 12:12 cltt 阅读(269) 评论(0) 推荐(0) 编辑

导航