The C++ language has a pretty central, unified leadership: Stroustrup, Sutter, Alexandrescu, etc. mostly agree on what constitutes best practices. They teach seminars together.
These best practices drive the direction of language evolution and standardization. All the compilers strive to support the standard precisely, with minimal differences because a main point of C++ is portability.
We can put a stamp of approval on books that effectively explain the consensus and how to write directly to the standard.
SQL couldn't be more different. The database vendors purposely design extensions to tempt programmers into vendor lock-in. While a standard exists, it's not widely known or promoted by the vendors. I met one Microsoft "schema specialist" who claimed there was no ISO SQL standard, when I pointed out how nonstandard his code samples were.
The specific work a database does decides its platform, and that decides the language dialect. So there isn't one SQL language with a set of best practices. C++ supports different styles and paradigms, but in the end it's portable without as much respect to platform. At least when done with a modicum of best/better practices.