1.python是什么语言? Python是一种支持面向对象的解释性高级语言,属于脚本语言的一种. 2.IDLE是什么? IDLE是开发python程序的基本IDE(集成开发环境),具备基本的IDE的功能,是非商业Python开发的不错的选择. 3.print()的作用是什么? print()方法用于打印输出 4.python中表示乘法的符号是什么? * 5.为什么print("i love you" + 5)不可以执行会报错,而print("i love you"…
--基本函数--select name,count(id) from work_test group by name having count(id)>1--select upper(name),t.*,lower(name),substr(name,1,5) from WORK_TEST t--连表更新/*update work_test set(price)=(select t.price from work_test t where t.price=80.00 and t.id=work_…