{}起到标注作用,实际使用将{}去掉。
查询表中最后一行:
select * from {表名} order by {主键字段名} DESC limit 1
说明:mysql 要查询某一行数据必须根据某列索引查找,这个列通常为主键
修改字段名:
alter table {表名} change {旧字段名} {新字段名} {属性} {是否非空};
例:
alter table 巴西 change 序号 order1 varchar(255) NULL;
查询数据库中所有表名
select table_name from information_schema.tables where table_schema=’{数据库名}’