MySQL数据库字段连接符是指SQL语句中用来连接两个表字段的符号,它能够把两个字段连接起来,以便用户更好地操作数据库。MySQL数据库字段连接符一般有四种:“=”,“<>”,“>”,“<”,它们的应用如下:
select * from table1,table2 where table1.id=table2.id;
select * from table1,table2 where table1.id<>table2.id;
select * from table1,table2 where table1.id>table2.id;
select * from table1,table2 where table1.id
使用MySQL数据库字段连接符时,需要注意以下几点:
本文链接:http://task.lmcjl.com/news/2285.html