1.光标以及光标动画的显示 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; [ExecuteInEditMode] public class Pointer : MonoBehaviour { public Transform ArrowNormal; public Image ArrowActive; // Use this for init…
1:mysql的内连接: 内连接(inner join):显示左表以及右表符合连接条件的记录: select a.goods_id,a.goods_name,b.cate_name from tdb_goods a,tdb_goods_cate b where a.cate_id = b.cate_id; <==============上下两种写法等价===============> select c.goods_id,c.goods_name,d.cate_name from tdb_goo…
1.外链接之左连接:优先显示左表全部记录 left join 在内连接的基础上保留左表的记录 即便左表有一条记录和右表没有关系,也把他留下 mysql> select * from employee left join department on employee.dep_id = department.id; +----+------------+--------+------+--------+------+--------------+ | id | name | sex | age…